Affiliate product search for AI agents. Merchant feeds, not web scraping. Works with any MCP client.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"Godalo": {
"args": [
"mcp-remote",
"https://mcp.godalo.ai/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Godalo gives AI agents real product search from merchant systems — not scraped web pages.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser / ai-ml
Persistent memory using a knowledge graph
Browser automation with Puppeteer for web scraping and testing
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Godalo-ai/godalo and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The MCP server that gives AI agents accurate product data and verified deals across physical products, software, travel, services, and more.
godalo.ai · MCP Registry · npm
AI assistants hallucinate product information. They invent prices, recommend discontinued products, and cannot tell you whether something is in stock or genuinely on sale. Godalo fixes this — pulling structured data directly from merchant systems so AI agents always return truthful, current information with real affiliate purchase links.
{
"mcpServers": {
"Godalo": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.godalo.ai/mcp"]
}
}
}
Or add https://mcp.godalo.ai/mcp as a custom connector in Claude.ai or ChatGPT.
get_recommendationsFast FTS5 full-text search. Auto-triggers on any purchase intent.
get_recommendations({
query: "cordless drill under £50",
country: "GB", // ISO 3166-1 alpha-2
budget?: 50, // optional max price
category?: "tools" // optional category filter
})
query_productsPrecise SQL on the product database. AI writes the SQL based on user intent.
query_products({
sql: `SELECT product_name, search_price, currency, merchant_name,
brand_name, specifications, in_stock, aw_deep_link,
merchant_image_url, aw_image_url
FROM products
WHERE (LOWER(product_name) LIKE '%cordless drill%'
OR LOWER(product_name) LIKE '%drill driver%')
AND LOWER(merchant_name) NOT LIKE '%aliexpress%'
AND LOWER(merchant_name) NOT LIKE '%shein%'
AND search_price > 1 AND search_price <= 50
AND in_stock = 1
ORDER BY is_joined DESC, search_price ASC
LIMIT 5`,
country: "GB"
})
get_dealsReal deal discovery — verified discounts from merchant RRP data.
get_deals({
country: "GB",
category?: "electronics", // optional
min_discount?: 20, // minimum % off (default 10)
budget?: 200 // optional max price
})
| Physical | Digital / Services |
|---|---|
| Electronics, fashion, home | Software, subscriptions, SaaS |
| Sports, beauty, health | Travel, hotels, car rental |
| Tools, automotive | Insurance (travel, device, health) |
| Toys, baby, books | Tickets, events, concerts |
| Garden, kitchen | Telecom, mobile plans |
products (
product_name TEXT,
search_price REAL, -- current price (filter > 1)
rrp_price REAL, -- original RRP (0 if unavailable)
currency TEXT, -- GBP, EUR, USD, SEK, NOK, PLN...
merchant_name TEXT,
category_name TEXT,
brand_name TEXT,
specifications TEXT,
in_stock INTEGER, -- 1=in stock
aw_deep_link TEXT, -- affiliate purchase URL ← always include
merchant_image_url TEXT,
aw_image_url TEXT,
keywords TEXT,
country TEXT,
is_joined INTEGER -- 1=approved merchant ← prioritise
)
Always include in SELECT: aw_deep_link
Always filter: search_price > 1, in_stock = 1
Always exclude: LOWER(merchant_name) NOT LIKE '%aliexpress%', NOT LIKE '%shein%', NOT LIKE '%temu%'
Deals filter: WHERE rrp_price > search_price AND rrp_price > 0
Prioritise approved merchants: ORDER BY is_joined DESC
| Network | Status | Coverage |
|---|---|---|
| Awin | ✅ Live | 25,000+ merchants · 180 countries |
| CJ Affiliate | ✅ Live | Enterprise brands · US, EU, global |
| Impact | 🔜 Q3 2026 | Premium DTC brands |
| Daisycon | 🔜 Q4 2026 | Benelux — Bol.com, Coolblue |
| **Ra |