streamable-httpMITupdated 3mo ago
The idealo MCP server brings idealo's product intelligence directly into your AI assistant โ search products, compare prices across hundreds of shops, and analyse 30-day price history across 6 European marketplaces (DE, AT, GB, FR, IT, ES) without ever leaving your editor.
What can you do with idealo MCP Server?
idealo MCP Server Guide
The idealo MCP server brings idealo's product intelligence directly into your AI assistant โ search products, compare prices across hundreds of shops, and analyse 30-day price history across 6 European marketplaces (DE, AT, GB, FR, IT, ES) without ever leaving your editor.
[!NOTE] Rate limits apply to all idealo MCP server tools. The default Trial tier is self-serve via OAuth and gives you
3 req/s ยท 6 burst ยท 500 calls/dayper user. Trial responses include a single product image, capget_product_offersat 10 offers per product, and exclude shop logos, external links, and detailed user reviews. Partner tier unlocks higher rate limits, full image arrays, shop logos, test-report links, and full user-review payloads. To request Partner access, contact us via mcp@idealo.de.
For the complete tool reference (input schemas, sample responses, tier-by-tier field differences), see docs/tools.md.
Features
-
Catalog search โ Full-text search with filters for category, brand, price range, availability, and bargains across 6 European marketplaces. Returns an encrypted
productRefyou pass to the other tools. -
Product details โ Fetch a complete product profile: top offers, reviews summary, expert review, test reports, technical specifications, pros/cons, and a 30-day price trend in a single call.
-
Paginated offers โ Walk every offer for a product with shop name, ratings, pricing breakdown, delivery estimates, payment methods, free-return policy, and shipping costs. 5 offers per page.
-
Price history & analytics โ 30-day price trend with min/max/avg statistics, percentage change, sampling granularity, ASCII chart, and AI-generated buying recommendations.
Installation & Setup
Different MCP clients require slightly different setups. Follow the instructions below for your specific client.
Claude Desktop
The recommended way is via Custom Connectors:
- Open Claude โ Settings โ Connectors.
- Click Add custom connector.
- Enter the URL
https://mcp.idealo.com/mcpand click Add. - Authenticate when prompted โ Claude opens a browser for the OAuth handshake.
Add the following to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your platform:
{
"mcpServers": {
"idealo": {
"type": "url",
"url": "https://mcp.idealo.com/mcp"
}
}
}
Restart Claude Desktop and confirm the idealo server is listed under MCP tools.
Claude Code
Run the following command in your terminal:
claude mcp add --transport http idealo https://mcp.idealo.com/mcp --callback-port 6274
Add to .mcp.json at the project root (Claude Code reads it automatically):
{
"mcpServers": {
"idealo": {
"type": "url",
"url": "https://mcp.idealo.com/mcp",
"oauth": {
"callbackPort": 6274
}
}
}
}
Useful commands:
claude mcp listโ list configured serversclaude mcp get idealoโ show server detailsclaude mcp remove idealoโ remove the server
VS Code
- Use the shortcut
โ Shift Pto search forMCP: Add Server. - Select
HTTP. - Paste
https://mcp.idealo.com/mcpand hitEnter. - When prompted for a server ID, enter
idealo. - Choose global or workspace scope.
The resulting mcp.json will look like:
{
"servers": {
"idealo": {
"type": "http",
"url": "https://mcp.idealo.com/mcp"
}
}
}
Open the chat toolbar, switch to Agent mode, and type #search_products to confirm the tools are available. If nothing shows up, restart VS Code.
[!NOTE] You must have GitHub Copilot enabled to use MCP in VS Code.
Cursor
- Open Cursor โ Settings โ Cursor Settings.
- Go to the MCP tab.
- Click + Add new global MCP server.
- Enter and save:
{
"mcpServers": {
"idealo": {
"url": "https://mcp.idealo.com/mcp"
}
}
}
Other editors
Any client that supports the Streamable HTTP transport can connect. Use:
{
"mcpServers": {
"idealo": {
"url": "https://mcp.idealo.com/mcp"
}
}
}
Authentication
The server uses OAuth 2.0 with Dynamic Client Registration (DCR) + PKCE. Spec-compliant MCP clients discover the auth flow automatically through .well-known/oauth-protected-resource โ no client_id / client_secret setup required for the Trial tier. On first connect, your client opens a browser for login. Tokens are cached client-side and refreshed transparently.
Partner-tier credentials are issued separately by idealo upon request.
Prompting your MCP client
Once connected, prompt your client in plain language. The 4 tools chain together via an opaque productRef returned by search_products.
Examples:
- "Find running shoes under โฌ100 available in Germany."
- "Show me details, top offers, and pros/cons for the cheapest result."
- "Walk through every offer until I see one that ships free with PayPal accepted."
- "Give me the 30-day price history and tell me whether now is a good time to buy."
Tips & Best Practices
- Use
productRef.search_productsreturns an encryptedproductRefper result โ pass that string directly toget_product_details,get_product_offers, andget_product_price_history. It's opaque, marketplace-aware, and short-lived. includeSearchFiltersandincludeSizeFiltersrequireincludeCategories. The server rejects calls that send attribute or size filters without at least one numeric category ID. Search first without filters to discover availablecategoryIds in the response.- Pick the right country. Pass
countryas a 2-letter ISO code (DE,AT,GB,FR,IT,ES). Unknown codes silently fall back to Germany. - Paginate offers properly.
get_product_offersreturns 5 offers per call plus anextOffset. Loop untilnextOffset === 0. - Some shops are filtered out. Compliance blocklist removes Amazon, eBay, and Otto offers from all tiers โ this is intentional and applies regardless of tier.
- Hit the same marketplace consistently. A
productReffromcountry=DEwon't return useful data when reused withcountry=GB.
Supported markets
๐ฉ๐ช Germany ยท ๐ฌ๐ง United Kingdom ยท ๐ซ๐ท France ยท ๐ฎ๐น Italy ยท ๐ช๐ธ Spain ยท ๐ฆ๐น Austria
Support
- Website: idealo.de
- Tool reference: docs/tools.md
- Partner-tier requests: mcp@idealo.de
- Request support for a new MCP client: mcp@idealo.de
Install
Add idealo MCP Server to your client. Pick the one you use.
claude mcp add --transport http idealo-mcp-server https://mcp.idealo.com/mcpcodex mcp add idealo-mcp-server --url https://mcp.idealo.com/mcp{
"mcpServers": {
"idealo-mcp-server": {
"url": "https://mcp.idealo.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"idealo-mcp-server": {
"type": "http",
"url": "https://mcp.idealo.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"idealo-mcp-server": {
"url": "https://mcp.idealo.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"idealo-mcp-server": {
"serverUrl": "https://mcp.idealo.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance13/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 104 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | May 15, 2026 |