MCP Server

Connect your AI applications to Cardog's automotive data through our Model Context Protocol (MCP) server. Access vehicle listings, market analysis, recalls, fuel pricing, and charging station data directly from Claude and other AI applications.

Server URL: https://mcp.cardog.io/sse


Quick Start

Claude Code (Recommended)

The fastest way to connect is with the Claude Code CLI:

claude mcp add cardog https://mcp.cardog.io/sse --transport sse

When prompted, enter your API key from cardog.app/account/api.

That's it. Cardog tools are now available in Claude Code. Try:

claude "What's a fair price for a 2022 Toyota RAV4?"

Claude Desktop

Add to your Claude Desktop config:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "cardog": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.cardog.io/sse"],
      "env": {
        "API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with your API key. Restart Claude Desktop to load the configuration.

Claude Web/Mobile

  1. Go to SettingsIntegrationsAdd more
  2. Enter:
    • Name: Cardog
    • URL: https://mcp.cardog.io/sse
  3. Add your API key when prompted
  4. Enable tools in new chats

Authentication

The MCP server requires a valid Cardog API key. You can provide it via:

MethodFormat
Query Parameter?api_key=YOUR_API_KEY
Authorization HeaderAuthorization: Bearer YOUR_API_KEY
Custom Headerx-api-key: YOUR_API_KEY

Get your API key from your account dashboard.


Available Tools

Inventory & Listings

ToolDescription
search_listingsSearch vehicle inventory with filters for make, model, year, price, mileage, body style, fuel type, and color

Market Intelligence

ToolDescription
get_vin_analysisComprehensive market analysis for a specific VIN including pricing position and comparable vehicles
overviewMarket statistics for a make/model/year: median price, inventory count, price ranges
price_distributionPrice histogram data showing where listings cluster
get_odometer_analysisMileage vs price correlation for depreciation analysis
get_geographic_analysisRegional price variations by state/province
get_market_trendsTime series data showing pricing movements
get_listing_market_positionIndividual listing market analysis
pulseOverall market health indicators

Vehicle Research

ToolDescription
search_lineupsAvailable models for a manufacturer
get_model_yearDetailed trim levels and specifications for a specific model year
search_recallsSafety recalls from NHTSA (US) and Transport Canada

Energy & Infrastructure

ToolDescription
search_electric_stationsEV charging stations with connector type and power filtering
search_gas_stationsFuel stations with current prices

Example Usage

Finding Vehicles

You: "Find me a used Toyota RAV4 under $30,000 with less than 50,000 miles"

Claude will call search_listings with appropriate filters and return matching vehicles with price, mileage, year, trim level, and dealer information.

Market Analysis

You: "What's the market like for 2022 RAV4s?"

Claude calls overview and responds with market statistics: median price, inventory count, price ranges, and percentile breakdowns.

VIN Check

You: "Check this VIN: 2T3P1RFV8NC123456"

Claude decodes the VIN, identifies the exact vehicle configuration, and provides market positioning relative to comparable listings.

Safety Research

You: "Are there any recalls on 2020-2023 Honda CR-Vs?"

Claude searches NHTSA and Transport Canada databases, listing active recalls with campaign numbers, affected components, and remedy status.


Tips

Unit Conversion

The API uses kilometers for odometer values. Claude automatically converts when you mention miles (50,000 miles ≈ 80,000 km).

VIN Validation

VINs are 17 characters and cannot contain I, O, or Q. Position 9 is a check digit. Claude validates VINs before making API calls.

Combining Tools

The most powerful queries combine multiple tools:

  1. Search → Find matching vehicles
  2. Overview → Compare prices to market statistics
  3. Recalls → Check safety history
  4. Odometer Analysis → Understand depreciation

Building Custom Agents

For programmatic use, see our guide: Building a Car Buying Agent with Claude

You can also call the Cardog API directly with the same data available through MCP tools.


Support

Was this page helpful?