CarAPI.dev MCP Server

遠端 MCP 伺服器,讓 AI 代理即時存取全面的車輛資料:VIN 解碼、車牌查詢、失竊車輛檢查、里程歷史、檢驗記錄、照片,以及橫跨 24 個市場的市場估值。只需從任何 MCP 用戶端(Claude Desktop、Claude Code、Cursor、ChatGPT、Cline、Zed)使用單一 Authorization: Bearer API 金鑰即可連接。無狀態且託管於 https://mcp.carapi.dev/mcp — 無需設定、無需管理工作階段,只需插入金鑰即可開始查詢。內含免費的 carapi_docs 工具,無需驗證即可搜尋 CarAPI 文件。

文件

CarAPI.dev

MCP Server

CarAPI for AI Agents

Plug CarAPI into any MCP-compatible AI agent. Zero install — point your client at mcp.carapi.dev with your existing API key and start asking it about VINs.

Zero install

Add a URL + your API key. No npm, no Node.

Same auth as the API

Reuses your dashboard key — no new credentials.

14 tools

All endpoints + image OCR + a buyer-report composite.

Get started

  1. Grab your CarAPI key from your dashboard .
  2. Pick your client below and paste the snippet, replacing YOUR_CARAPI_KEY.
  3. Restart the client. The carapi_* tools will appear.

Claude Desktop

Edit claude_desktop_config.json (Settings → Developer → Edit config):

claude_desktop_config.jsonCopy

{
  "mcpServers": {
    "carapi": {
      "url": "https://mcp.carapi.dev/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_CARAPI_KEY"
      }
    }
  }
}

Claude Code

One command:

terminalCopy

claude mcp add --transport http carapi https://mcp.carapi.dev/mcp \
  --header "Authorization: Bearer YOUR_CARAPI_KEY"

Cursor

Add to ~/.cursor/mcp.json:

~/.cursor/mcp.jsonCopy

Claude.ai (web) / ChatGPT

Settings → Connectors → Add custom connector. Paste:

  • URL: https://mcp.carapi.dev/mcp
  • Auth header: Authorization: Bearer YOUR_CARAPI_KEY

Tools

ToolCostWhat it does
carapi_vin_decode1Decode a 17-character VIN to make/model/year/engine.
carapi_plate_to_vin1Look up VIN from license plate (PL/NO/SK/SE/CZ/US; US needs a state).
carapi_stolen_check1Check if a VIN is reported stolen (SK/CZ/SI/HU/RO).
carapi_inspection1Technical/emissions inspection history (currently SK).
carapi_listing_search1Search vehicle listings by make/model/year.
carapi_photos1Retrieve known photos for a VIN.
carapi_payments1Calculate monthly payments for a VIN.
carapi_valuation1Estimate market value of a vehicle (24 markets).
carapi_mileage_history1Historical odometer readings — spot rollback.
carapi_extract_vin1Extract a VIN from a photo (windshield/dashboard/door jamb) via OCR.
carapi_extract_plate1Extract a license plate from a vehicle photo via OCR (27 regions).
carapi_recalls1Look up U.S. recall records by make/model/year.
carapi_buyer_report4COMPOSITE — vin_decode + stolen_check + mileage + inspection in one call.
carapi_docs0Search this documentation. No API key required.

Try a buyer report

Once installed, ask your agent:

"Run a buyer report on VIN 1HGBH41JXMN109186."

It calls carapi_buyer_report, which fans out to four endpoints in parallel and returns a unified pre-purchase summary (vehicle specs + stolen check + mileage history + inspection). 4 quota units.

Troubleshooting

  • 401 / "Missing CarAPI key" — Auth header is missing or malformed. Use exactly Bearer YOUR_KEY.
  • 429 / quota exceeded — You've hit your monthly quota. Upgrade in the dashboard.
  • Tool not appearing — Restart the client after editing the config. Verify with the client's MCP debug log.

Need an API key?

Free tier includes 100 requests/month. No credit card required.

Get your API key

← Back to docs home