Auto.dev
live AutomotiveCommerceAuto.dev MCP — VIN decode, used-car listings search, and total-cost-of-ownership valuation. BYO Auto.dev API key.
Tools
autodev_vin_decode 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" })
No parameters required.
Try it
autodev_listings Find used cars for sale matching criteria (make/model/price/location) — active listings from US physical & online dealers. Example: autodev_listings({ make: "Toyota", model: "Camry", year_min: 2020, p
No parameters required.
Try it
autodev_valuation Estimated value for a vehicle — market price and total cost of ownership (depreciation, insurance, maintenance, fuel) for a VIN. Example: autodev_valuation({ vin: "1FTFW3LDXRFB40317", zip: "94103", _a
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/auto-dev/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/auto-dev/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"autodev_vin_decode","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("autodev_vin_decode", {}); // Or ask in plain English:
const answer = await px.ask("auto"); Related packs
Other Pipeworx packs in the same categories (Automotive, Commerce):