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

NameTypeRequiredDescription
vinstringyes17-character Vehicle Identification Number, e.g. “1FTFW3LDXRFB40317”
_apiKeystringyesAuto.dev API key (1,000 free calls/mo at auto.dev)

Example call

Arguments

{
  "vin": "1FTFW3LDXRFB40317",
  "_apiKey": "your-auto-dev-api-key"
}

curl

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":{"vin":"1FTFW3LDXRFB40317","_apiKey":"your-auto-dev-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('autodev_vin_decode', {
  "vin": "1FTFW3LDXRFB40317",
  "_apiKey": "your-auto-dev-api-key"
});

More examples

{
  "vin": "2T1BURHE0JC047186",
  "_apiKey": "your-auto-dev-api-key"
}

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.

Regenerated from source · build August 22, 2026