Skip to main content
Autoza
For AI Agent Developers

Autoza MCP Server

The Autoza MCP server is a free, open-source Model Context Protocol server for the UK used-car market. It exposes five tools — search verified-dealer listings, query market stats, fetch model-specific buying guides, pull monthly Price Pulse research, and find verified dealers — to any MCP-compatible AI client. Data is licensed CC BY 4.0.

Package
@autoza/mcp-server
License
MIT (server) · CC BY 4.0 (data)
Transport
stdio · no auth required

Tools

  • search_listings
    Live verified-dealer listings, filterable by make, model, region, fuel type, price, and year.
  • get_market_stats
    Aggregated UK used-car market — total listings, top makes, fuel breakdown, price ranges. Updated hourly.
  • get_model_guide
    Common-faults guide for a make+model with year-by-year fault patterns, road tax, fuel economy, inspection checklist.
  • get_research_pulse
    Monthly Used-Car Price Pulse — proprietary research, Zenodo DOI, Hugging Face dataset version.
  • find_dealers
    Verified UK dealer directory — name, region, Trust Score, listing count.

Install

The server runs over stdio with no authentication. It calls public endpoints on autoza.co.uk. No keys, no telemetry, no server-side secrets.

Claude Desktop

{
  "mcpServers": {
    "autoza": {
      "command": "npx",
      "args": ["-y", "@autoza/mcp-server"]
    }
  }
}

Claude Code

claude mcp add autoza -- npx -y @autoza/mcp-server

Cursor / Continue / Cline

{
  "mcpServers": {
    "autoza": { "command": "npx", "args": ["-y", "@autoza/mcp-server"] }
  }
}

Why this exists

Autoza is built on the long-term thesis that vehicle commerce becomes agent-to-agent: a buyer's AI queries marketplaces, contacts seller agents, and negotiates and closes deals autonomously. This MCP server is the public, agent-callable face of that thesis.

The same data is also published as a live JSON API at /api/public/market-stats, as a Hugging Face dataset, and on Zenodo with a permanent DOI. The MCP server is the agent-native form.

Cross-references