autodev_vin_decode
Pack: auto-dev · Endpoint: https://gateway.pipeworx.io/auto-dev/mcp
Decode a VIN into a full vehicle spec (year, make, model, trim, engine, body, drivetrain, fuel type). Example: autodev_vin_decode({ vin: “1FTFW3LDXRFB40317”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
vin | string | yes | 17-character Vehicle Identification Number, e.g. “1FTFW3LDXRFB40317” |
_apiKey | string | yes | Auto.dev API key (1,000 free calls/mo at auto.dev) |
Example call
curl -X POST https://gateway.pipeworx.io/auto-dev/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"autodev_vin_decode","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"auto-dev": {
"url": "https://gateway.pipeworx.io/auto-dev/mcp"
}
}
}
See Getting Started for client-specific install steps.