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)
- Go to Settings → Integrations → Add more
- Enter:
- Name:
Cardog
- URL:
https://mcp.cardog.io/sse?token=YOUR_API_TOKEN
- Name:
- Replace
YOUR_API_TOKEN
with your actual API token from your account dashboard - 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:
- Query Parameter (Recommended): Add
?token=YOUR_API_TOKEN
to the server URL - Authorization Header: Send
Authorization: Bearer YOUR_API_TOKEN
- 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.