Vincario Vehicle Data
VIN Decoder, Vehicle Market Value, OCR VIN Scanner and other API services for the automotive industry.
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-KeyHTTP header - Docker (recommended), or Python 3.11+ with uv
Running with Docker
docker build -t vincario-mcp .
docker run -p 8080:8080 vincario-mcp
The server starts on http://localhost:8080.
Running locally
pip install uv
uv sync
uv run main.py
Connecting to an MCP client
Pass your Vincario API key as an HTTP header with each request:
X-API-Key: your_api_key_here
Claude 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.
관련 서버
Higress AI-Search MCP Server
Provides an AI search tool to enhance AI model responses with real-time search results from various search engines using the Higress ai-search feature.
Helium MCP
Real-time news with bias scoring across 5,000+ sources and 15+ dimensions, balanced news synthesis, live market data with AI analysis, ML options pricing, and semantic meme search.
Travel Planner
A server for travel planning and interacting with Google Maps services.
Zefix Search
Company search in Swiss Central Business Name Index (zefix.ch)
Bing Webmaster Tools
Access Bing Webmaster Tools data, including search performance, crawl statistics, URL submission, and keyword research.
Teleport Documentation
Search and query Teleport's documentation using embeddings stored in a local Chroma vector database.
Tavily Search
Optimized web search for LLMs using the Tavily Search API.
RAG Documentation
Retrieve and process documentation using vector search to provide context for AI assistants.
RocketReach
Find emails, phone numbers, and enrich company data using the RocketReach API.
Stock Analysis
Access real-time and historical Indian stock data using the Yahoo Finance API.