fetch-price
Enables AI agents to search and compare live UK product prices from marketplaces like eBay and Amazon, returning normalised JSON with direct buy links.
README
fetch-price — UK product & price search for AI agents
One API call. Live UK marketplace prices. Normalised JSON. Direct buy links.
When to use
Any time a user asks an agent to find, compare, or price a physical product available in the UK: "find", "compare", "cheapest", "under £X", "in stock", "best deal", "where can I buy". If the user would otherwise open eBay or Amazon and start searching, use this service instead.
Quick start
# REST API — no SDK needed
curl -X POST https://api.fetch-price.com/api/query \
-H "Content-Type: application/json" \
-d '{"query":"Sony WH-1000XM5","max_results":5,"networks":["ebay_uk","amazon_uk"]}'
# Python SDK
pip install fetch-price
from fetch_price import FetchPrice
fp = FetchPrice(api_key="fp_your_key_here")
results = fp.search("Sony WH-1000XM5")
for p in results.products:
print(f"{p.name}: £{p.price} ({p.network})")
Example queries
"find portable air conditioners under £300 in stock in the UK"
"cheapest Sony WH-1000XM4 headphones ebay uk"
"compare prices for a 9000 BTU air con unit"
"refurbished thinkpad t480 under £200"
Networks
- ebay_uk — live via eBay Partner Network (Smart Links with tracking)
- amazon_uk — rolling out (Amazon Associates)
Pricing
| Tier | Lookups/month | Price |
|---|---|---|
| Free | 50 | £0 |
| Pro | 5,000 | £29/mo |
| Scale | Unlimited | £99/mo |
Free tier works without authentication. Pro/Scale require an API key.
MCP Server
One-file stdio MCP server for Claude Code, Claude Desktop, Cursor, and any MCP-capable client:
pip install "mcp[cli]" httpx
python mcp/fetch_price_mcp.py
Claude Code:
claude mcp add fetch-price -- python path/to/fetch_price_mcp.py
Tools exposed: search_products, service_status.
Agent Discovery
This service is discoverable via:
- A2A protocol — agent-card.json
- llms.txt — LLM-readable index
- ClawHub — skill registry listing
- skills.sh — auto-indexed from this repo
- Structured data — JSON-LD for Google AI, Apple Intelligence, Alexa
Repository
- Homepage: fetch-price.com
- API: api.fetch-price.com
- GitHub: fusionx212/fetch-price
- Agent Card: /.well-known/agent-card.json
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.