Carvector MCP Server

Vehicle specs, federal recalls, and OBD-II DTC reference for AI agents via MCP.

Remote serverstreamable-http

What is the Carvector MCP server?

Vehicle specs, federal recalls, and OBD-II DTC reference for AI agents via MCP. Exposed over MCP by the carvector mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Models hallucinate car data. They invent horsepower numbers, miss recalls filed last week, and guess at what a trouble code means. carvector-mcp gives your agent structured, sourced answers it can cite instead of a confident guess.

carvector-mcp is an open-source, thin client. It bundles no data — every call forwards to the CarVector API, authenticated with your key. What you get back:

Its toolset

Everything the assistant can do here goes through one of these:

  • search_vehicles — Matching vehicles by year / make / model, with ids + specs
  • get_vehicle — Full specs for one vehicle — engine, drivetrain, body, image, recall count
  • get_recalls — Federal recall campaigns for a vehicle — component, summary, consequence, remedy
  • get_complaints — Owner-complaint signal for a vehicle — aggregate by component + the most recent complaints (Pro plan)
  • get_tsbs — Manufacturer service-bulletin index for a vehicle — the fix the dealer already knows about (Business plan)
  • get_investigations — Federal defect investigations for a vehicle — a leading indicator of recalls (Business plan)
  • lookup_dtc — An OBD-II code's title, category, severity, and safety/emissions flags

Configuration

You will need one environment variable: CARVECTOR_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Carvector's toolset — search_vehicles, get_vehicle, get_recalls and 4 more — is a fair guide to whether it matches your workflow. It is maintained by carvectorio; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the carvector mcp server does with a few real requests.

Available tools

ToolWhat it does
search_vehiclesMatching vehicles by year / make / model, with ids + specs
get_vehicleFull specs for one vehicle — engine, drivetrain, body, image, recall count
get_recallsFederal recall campaigns for a vehicle — component, summary, consequence, remedy
get_complaintsOwner-complaint signal for a vehicle — aggregate by component + the most recent complaints *(Pro plan)*
get_tsbsManufacturer service-bulletin index for a vehicle — the fix the dealer already knows about *(Business plan)*
get_investigationsFederal defect investigations for a vehicle — a leading indicator of recalls *(Business plan)*
lookup_dtcAn OBD-II code's title, category, severity, and safety/emissions flags

How to install the Carvector MCP server

{
  "mcpServers": {
    "carvector": {
      "command": "npx",
      "args": ["-y", "carvector-mcp"],
      "env": {
        "CARVECTOR_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
CARVECTOR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Carvector to search vehicles.
  • Use Carvector to get vehicle.
  • Use Carvector to get recalls.

Frequently asked questions

It connects Carvector to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (search_vehicles, get_vehicle, get_recalls, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Carvector directly.