Decode Vehicle Identification Numbers (VINs) into make, model, year, body type, engine, and safety features. Also browse all registered vehicle makes and look up available models by make and year.
decode_vin — Decode a 17-character VIN into structured vehicle attributesget_makes — All vehicle makes (brands) registered with NHTSAget_models — Vehicle models for a specific make and model year (e.g., Toyota 2022)curl -s -X POST https://gateway.pipeworx.io/nhtsa/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"decode_vin","arguments":{"vin":"1HGBH41JXMN109186"}}}'
Returns: make, model, year, body class, drive type, engine displacement, fuel type, plant city, and more.
{
"mcpServers": {
"pipeworx-nhtsa": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/nhtsa/mcp"]
}
}
}
共 1 个版本