# vincario-vehicle-data

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…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add martin-nmc8/vincario-vehicle-data

# Browse available tools
npx -y @smithery/cli@latest tool list martin-nmc8/vincario-vehicle-data

# Get full schema for a tool
npx -y @smithery/cli@latest tool get martin-nmc8/vincario-vehicle-data vin_decode

# Call a tool
npx -y @smithery/cli@latest tool call martin-nmc8/vincario-vehicle-data vin_decode '{}'
```

## Direct MCP Connection

Endpoint: `https://vincario-vehicle-data--martin-nmc8.run.tools`

**Optional config:**
- `X-API-Key` (header) — X-API-Key

## Tools (4)

- `vin_decode` — Decode a VIN and return detailed information about the vehicle.
- `vin_decode_info` — List which fields are available for decoding a given VIN (free endpoint).
- `stolen_check` — Check if a VIN appears in supported police/Vincario stolen databases.
- `vehicle_market_value` — Vehicle Market Value for a VIN. Accepts query parameters: odometer (int), odometer_unit (str).Pass them via 'params' di…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get martin-nmc8/vincario-vehicle-data <tool-name>
```
