carsxe_vin_specs

Pack: carsxe · Endpoint: https://gateway.pipeworx.io/carsxe/mcp

Full spec for a VIN — decode a 17-char VIN into year/make/model/trim plus engine, drivetrain, transmission, body and fuel type. Example: carsxe_vin_specs({ vin: “WBAFR7C57CC811956”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
vinstringyes17-character Vehicle Identification Number, e.g. “WBAFR7C57CC811956”
deepdatabooleannoOptional. Request extended data (slower response). Defaults to false.
_apiKeystringyesYour CarsXE API key (instant free trial key at carsxe.com)

Example call

Arguments

{
  "vin": "WBAFR7C57CC811956",
  "_apiKey": "your-carsxe-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/carsxe/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"carsxe_vin_specs","arguments":{"vin":"WBAFR7C57CC811956","_apiKey":"your-carsxe-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('carsxe_vin_specs', {
  "vin": "WBAFR7C57CC811956",
  "_apiKey": "your-carsxe-api-key"
});

More examples

{
  "vin": "1HGCV1F32LA123456",
  "deepdata": true,
  "_apiKey": "your-carsxe-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "carsxe": {
      "url": "https://gateway.pipeworx.io/carsxe/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026