Docs · MCP server
API reference
MCP server
CarVector ships a first-party Model Context Protocol server. Point Claude, Cursor, ChatGPT, or any MCP-capable client at it and your agent can query real vehicle specs, recalls, and DTC reference natively — no scraping, no glue code.
Endpoint
Streamable HTTP
https://api.carvector.io/v1/mcpHTTP transport, authenticated with your CarVector API key as a bearer token. Every tool call counts against your plan's rate limit and shows up in your usage, just like a REST request.
Connect a client
Add CarVector to your MCP client's config. Most clients (Claude Desktop, Cursor) use a streamable-HTTP entry like this:
mcp config
{ "mcpServers": { "carvector": { "url": "https://api.carvector.io/v1/mcp", "headers": { "Authorization": "Bearer cv_your_key" } } } }
Keep your key server-side
Yourcv_ key carries your plan's full access. Use a desktop/agent client you trust, and never paste it into a public or shared config.Tools
search_vehicles Find vehicles by year, make, and/or model.get_vehicle Full specs for one vehicle by id.get_recalls Federal recall campaigns for a vehicle.lookup_dtc Diagnostic trouble code reference.A typical flow: the agent calls search_vehicles to resolve a vehicle id, then get_vehicle or get_recalls. Tool results are the same JSON the REST endpoints return.
Try it
Ask your agent: "What are the open recalls on a 2019 Toyota Tacoma, and what does code P0420 mean?" — it'll chainsearch_vehicles → get_recalls → lookup_dtc and answer from real data.