Get started with CarsXE's MCP server for AI-powered vehicle data integration in Claude, Cursor, VS Code, and other MCP-compatible tools.
The CarsXE MCP server is listed on all major MCP marketplaces and registries:
| Marketplace | Link |
|---|---|
| MCP.so | View on MCP.so |
| MCP Market | View on MCP Market |
| Glama.ai | View on Glama.ai |
| MCP Registry | View on MCP Registry |
| MCP Servers | View on MCP Servers |
Model Context Protocol (MCP) is an open standard that allows AI applications to securely connect to external data sources and tools. The CarsXE MCP server provides direct access to our comprehensive automotive database.
The CarsXE MCP server is a Node.js/TypeScript application that exposes a suite of tools for querying comprehensive vehicle data from the CarsXE API. It is designed for seamless integration with LLMs (like Anthropic Claude, OpenAI GPT, etc.), chatbots, and developer tools, providing:
Connecting CarsXE to your AI editor or chat client via MCP gives you a supercharged vehicle data experience — directly inside the tools you already use:
| Benefit | Description |
|---|---|
| Ask in plain English | No need to know API endpoints or parameters — just describe what you want |
| Context-aware answers | The AI combines live vehicle data with your question for tailored, actionable responses |
| No tab switching | Get VIN specs, history, recalls, and values without leaving your editor or chat |
| Chain requests effortlessly | Decode a plate → get full specs → check recalls → get market value, all in one conversation |
| Always live data | Every query hits the CarsXE API in real time — no stale cache or outdated results |
| Works in your favorite editor | Claude Desktop, Cursor, VS Code, Windsurf, and any MCP-compatible client |
npx mcp-remote@latest (Claude Desktop, Windsurf). Download Node.jsAll editors use the same remote MCP endpoint. Replace YOUR_API_KEY with your actual CarsXE API key in every config below.
a. Open Claude Desktop Settings
b. Edit the Configuration File
claude_desktop_config.json file in your default text editor."mcpServers" section. If it does not exist, add it as shown below.{
"mcpServers": {
"carsxe": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.prod.carsxe.com/mcp",
"--header",
"X-API-Key: YOUR_API_KEY"
]
}
}
}YOUR_API_KEY with your actual CarsXE API Key"mcpServers" if you use more than one.c. Restart Claude Desktop
Close and reopen the Claude Desktop app to apply the new configuration.
It may take a short delay for the changes to take effect.
This will only work if your API key is associated with an active subscription.
Install CarsXE MCP for Cursor
Click to install
The install dialog will open pre-filled with:
| Field | Value |
|---|---|
| Name | CarsXE |
| Type | streamableHttp |
| URL | https://mcp.prod.carsxe.com/mcp |
| Header | X-API-Key: YOUR_API_KEY |
Replace YOUR_API_KEY with your actual CarsXE API key, then click Install.
Install CarsXE MCP for VS Code
Click to install
After clicking install, you'll need to add your API key manually:
Ctrl+Shift+P / Cmd+Shift+P)YOUR_API_KEY with your actual CarsXE API key:{
"mcpServers": {
"CarsXE": {
"type": "http",
"url": "https://mcp.prod.carsxe.com/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}Note: Make sure you have the GitHub Copilot extension installed and agent mode enabled (
chat.agent.enabledin VS Code settings).
Ctrl+, and search for MCP)~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"carsxe": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.prod.carsxe.com/mcp",
"--header",
"X-API-Key: YOUR_API_KEY"
]
}
}
}The Claude CLI supports direct HTTP connections to MCP servers.
Using the Command Line:
claude mcp add --transport http carsxe https://mcp.prod.carsxe.com/mcp \
--header "X-API-Key: YOUR_API_KEY"Manual Configuration:
Edit ~/.claude.json:
{
"mcpServers": {
"carsxe": {
"type": "http",
"url": "https://mcp.prod.carsxe.com/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}List configured servers:
claude mcp listStart Claude CLI:
claudeEdit: ~/.gemini/settings.json
{
"theme": "Default",
"selectedAuthType": "oauth-personal",
"mcpServers": {
"carsxe": {
"url": "https://mcp.prod.carsxe.com/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}Replace YOUR_API_KEY with your actual CarsXE API key.
geminiThe CarsXE MCP server will be available immediately.
Ensure you have the Kiro CLI tool installed on your machine.
Create or edit ~/.kiro/settings/mcp.json:
{
"mcpServers": {
"carsxe": {
"url": "https://mcp.prod.carsxe.com/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
},
"disabled": false
}
}
}Replace YOUR_API_KEY with your actual CarsXE API key.
kiro-cli/mcpEnsure you have the Codex CLI tool installed on your machine.
Edit ~/.codex/config.toml:
[mcp_servers.carsxe]
url = "https://mcp.prod.carsxe.com/mcp"
http_headers = { "X-API-Key" = "YOUR_API_KEY" }Replace YOUR_API_KEY with your actual CarsXE API key.
codexThen list MCP servers:
/mcpThe CarsXE server will be available in the list.
Here are some example prompts you can try:
For a full list of supported tools and their descriptions, visit the CarsXE Products page.
Authentication Error
Connection Issues
npx (e.g., Claude Desktop, Windsurf), confirm Node.js is installed and accessible; for VS Code/Cursor setups that connect directly to the HTTP endpoint, Node.js is only needed if your client uses npx to start a local server.https://mcp.prod.carsxe.com/mcpTool Not Found
Ready to revolutionize your AI-powered vehicle data workflows with CarsXE MCP server!