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

Setup

Claude (Web/Mobile)

  1. Go to SettingsIntegrationsAdd more
  2. Enter:
    • Name: Cardog
    • URL: https://mcp.cardog.io/sse?token=YOUR_API_TOKEN
  3. Replace YOUR_API_TOKEN with your actual API token from your account dashboard
  4. Enable tools in new chats

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "cardog": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.cardog.io/sse?token=YOUR_API_TOKEN"]
    }
  }
}

Replace YOUR_API_TOKEN with your actual API token from your account dashboard.

Claude Code

Claude Code requires OAuth authentication which is not yet supported. Use Claude Desktop or Claude Web for now.

Authentication

The MCP server supports multiple authentication methods:

  1. Query Parameter (Recommended): Add ?token=YOUR_API_TOKEN to the server URL
  2. Authorization Header: Send Authorization: Bearer YOUR_API_TOKEN
  3. Custom Header: Send X-Cardog-Token: YOUR_API_TOKEN

Your API token can be found in your account dashboard. The server will validate your token against our API to ensure it's active and valid.

Once connected, you'll have access to all Cardog automotive data including vehicle listings, market analysis, recalls, fuel pricing, and charging stations directly in your AI conversations.

Was this page helpful?