Back to Browse

Fetch Price MCP Server

Developer ToolsLow Risk8.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Live UK marketplace product search with real prices and buy links.

About

Live UK marketplace product search with real prices and buy links.

Security Report

8.0
Low Risk8.0Low Risk

Valid MCP server (0 strong, 4 medium validity signals). 4 known CVEs in dependencies Package registry verified. Imported from the Official MCP Registry.

8 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-fusionx212-fetch-price": {
      "args": [
        "-y",
        "fetch-price"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub 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

TierLookups/monthPrice
Free50£0
Pro5,000£29/mo
ScaleUnlimited£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 protocolagent-card.json
  • llms.txtLLM-readable index
  • ClawHub — skill registry listing
  • skills.sh — auto-indexed from this repo
  • Structured data — JSON-LD for Google AI, Apple Intelligence, Alexa

Repository

Reviews

No reviews yet

Be the first to review this server!