MCP-vincario
Vincario Vehicle Data
Documentation
Vincario MCP Server
An MCP (Model Context Protocol) server that exposes the
Vincario API to AI agents and LLM clients. Enables AI assistants to
decode VINs, check stolen vehicle databases, and retrieve market valuations through natural language.
Tools
| Tool | Description |
|---|---|
| `vin_decode` | Decode a VIN and return detailed vehicle information |
| `vin_decode_info` | List available fields for a given VIN (free endpoint) |
| `stolen_check` | Check if a VIN appears in stolen vehicle databases |
| `vehicle_market_value` | Get market valuation for a vehicle (supports odometer input) |
Requirements
- Vincario API key — passed via `X-API-Key` HTTP header
- Docker (recommended), or Python 3.11+ with uv
Running with Docker
docker build -t vincario-mcp .
docker run -p 8080:8080 vincario-mcpThe server starts on `http://localhost:8080`.
Running locally
pip install uv
uv sync
uv run main.pyConnecting to an MCP client
Pass your Vincario API key as an HTTP header with each request:
X-API-Key: your_api_key_hereClaude Code
Add to your MCP config (`.mcp.json` or `claude_desktop_config.json`):
{
"mcpServers": {
"vincario": {
"type": "http",
"url": "http://localhost:8080",
"headers": {
"X-API-Key": "your_api_key_here"
}
}
}
}Hosted endpoint
If connecting to the hosted server at `https://mcp.vincario.com/mcp`, replace the URL accordingly.
Example usage
Once connected, you can ask your AI assistant:
- *"Decode VIN WBAFR9C54BC780006"*
- *"Is this vehicle stolen? VIN: WBAFR9C54BC780006"*
- *"What is the market value of VIN WBAFR9C54BC780006 with 85000 km?"*
Transport
The server uses streamable HTTP transport (`stateless_http=True`), which means no persistent session is required. Each request is independent, making it straightforward to deploy behind a reverse proxy or load balancer.
For HTTPS deployment, place a reverse proxy (nginx, Caddy, Cloudflare) in front of the server — the application itself runs on plain HTTP port 8080.
License
See Vincario API Terms of Service for usage terms.
Frequently asked questions
What is MCP-vincario?
MCP-vincario is Vincario Vehicle Data
How do I install MCP-vincario?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is MCP-vincario open source?
Yes — it is hosted on GitHub at https://github.com/Vincario/MCP-vincario and has 2 stars.
Related MCP tools
Cognee is the open-source AI memory platform for agents. Give your AI agents persistent long-term memory across sessions with a self-hosted knowledge graph engine.
Automate browser based workflows with AI
Hindsight: Agent Memory That Learns
A privacy-first app that strips AI watermarks from content you own.
Agent framework and applications built upon Qwen>=3.0, featuring Function Calling, MCP, Code Interpreter, RAG, Chrome extension, etc.
The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP