Auto.dev

MCP Quickstart

Connect any MCP client to auto.dev — Claude, Cursor, Windsurf, VS Code, and more

Connect any MCP client to auto.dev

Auto.dev exposes its full vehicle data API as native Model Context Protocol tools. AI agents can decode VINs, search listings, calculate payments, look up recalls, and more — directly inside Claude, Cursor, Windsurf, and any other MCP-compatible client.

Pick Your Path

PathBest forInstallAuth
Remote MCPhttps://mcp.auto.dev/mcpHosted clients (Claude Desktop), zero local setupNoneOAuth (one click)
Local stdio MCP@auto.dev/sdkCLI users, low-latency, offline-friendlynpm i -g @auto.dev/sdkOAuth via auto login or API key

Both paths expose the same tools. Remote is faster to set up; stdio runs in-process with your editor.

Quickstart by Client

Remote (recommended):

claude mcp add --transport http auto-dev https://mcp.auto.dev/mcp

Then run /mcp in Claude Code and select Authenticate for auto-dev. Browser opens for OAuth.

Local stdio:

npx @auto.dev/sdk mcp install

This installs the auto CLI globally and adds the auto-dev MCP server to ~/.claude.json.

Remote (recommended):

In Claude Desktop, go to Settings → Connectors → Add Custom Connector and enter:

  • Name: auto-dev
  • URL: https://mcp.auto.dev/mcp

Sign in via the OAuth prompt that opens.

Local stdio:

npx @auto.dev/sdk mcp install

Auto-configures ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows). Restart Claude Desktop after install.

Remote (recommended):

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "auto-dev": {
      "url": "https://mcp.auto.dev/mcp"
    }
  }
}

Restart Cursor. OAuth prompt opens on first tool use.

Local stdio:

npx @auto.dev/sdk mcp install

Auto-configures ~/.cursor/mcp.json.

Remote (recommended):

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "auto-dev": {
      "serverUrl": "https://mcp.auto.dev/mcp"
    }
  }
}

Restart Windsurf. OAuth prompt opens on first tool use.

Local stdio:

npx @auto.dev/sdk mcp install

Requires VS Code 1.99+ with GitHub Copilot Agent mode enabled.

Remote (recommended):

Add to .vscode/mcp.json (workspace) or your user settings:

{
  "servers": {
    "auto-dev": {
      "type": "http",
      "url": "https://mcp.auto.dev/mcp"
    }
  }
}

Open Copilot Chat, switch to Agent mode, and auto-dev tools appear in the tool picker. OAuth prompt opens on first use.

Local stdio:

npx @auto.dev/sdk mcp install

Authentication

Auto.dev MCP supports two auth modes:

OAuth (default). No API key required. The first tool call triggers a browser flow at id.org.ai. Tokens are issued and refreshed automatically by your MCP client. This is the recommended path for individual users.

API key. Set AUTODEV_API_KEY=sk_ad_... in your environment, or pass it in the MCP server config. Get a key at auto.dev/pricing. Use this for shared/CI environments where browser-based OAuth isn't viable.

Tools

Every tool below is available via both transports. Plan tier determines which tools your account can call.

ToolDescriptionPlan
auto_decodeDecode a VIN — make, model, year, trim, engineStarter
auto_listingsSearch vehicle listings with filtersStarter
auto_photosVehicle photos by VINStarter
auto_specsDetailed specificationsGrowth
auto_buildOEM build & trim dataGrowth
auto_recallsSafety recalls by VINGrowth
auto_paymentsMonthly payment calculationsGrowth
auto_aprInterest ratesGrowth
auto_tcoTotal cost of ownershipGrowth
auto_open_recallsOpen / unresolved recallsScale
auto_plateLicense plate to VIN lookupScale
auto_taxesTaxes and fees estimateScale
auto_docsSearch bundled API documentationFree
searchSearch auto.dev knowledge baseFree
fetchComprehensive vehicle dossierGrowth

See Also