The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Pricemyrepair MCP listing page.
UK car repair and servicing cost ranges, per car model, as an MCP server. Ask any MCP-capable assistant "how much should a clutch cost on a Ford Fiesta in the UK?" and it can answer with a real independent-garage range, a dealer estimate, and a link to the source page.
Endpoint (Streamable HTTP, no authentication):
Data comes from PriceMyRepair, a UK repair-cost and MOT data site built on the driver's side. Figures are estimates for a typical UK independent garage, parts and labour; they are not quotes.
| Tool | Input | Returns |
|---|---|---|
get_repair_cost | model, repair (free text) | Independent and dealer cost range in GBP, notes (e.g. timing chain vs cambelt), source_url |
get_model_costs | model | Every repair and service the price matrix covers for that model |
list_models | — | Models with per-model prices |
list_repairs | — | Repairs and services covered, with the page each is documented on |
Model and repair inputs are matched loosely: "VW Golf", "Volkswagen Golf" and "golf" all resolve; "timing belt", "cam belt" and "cambelt" all resolve. Pass uk-average as the model for a generic UK figure when the car isn't covered.
15 of the most common UK cars (Ford Fiesta and Focus, Vauxhall Corsa and Astra, VW Golf and Polo, Toyota Yaris, Honda Civic, Nissan Juke and Qashqai, Kia Sportage, Audi A3, BMW 1 and 3 Series, Mercedes A-Class) plus a UK-average row, across 18 jobs: clutch (with and without dual-mass flywheel), cambelt, front brake pads, pads and discs, suspension component, DPF clean and replace, EGR valve, turbo, head gasket, alternator, starter motor, full service, tyre, MOT test, air-con regas and small fixes.
Claude.ai / Claude Desktop: Settings → Connectors → Add custom connector → paste the endpoint URL, authentication None.
Claude Code:
Cursor / VS Code / any Streamable-HTTP client:
Raw JSON-RPC:
If you build on this data, please attribute PriceMyRepair and keep the source_url — the linked pages carry engine-by-engine detail, worked examples and a way to compare live garage quotes, which the range alone doesn't.
The server is a single Deno function (entry.ts in this repo) running on the PriceMyRepair app backend. It implements the MCP Streamable HTTP transport statelessly over JSON-RPC 2.0, reads prices live from the price matrix on every call, and computes dealer figures as 1.5× independent, rounded to £5. Rate limited to 60 requests per minute per IP.
Server code: MIT. Price data: © PriceMyRepair, free to use with attribution.