MCP server exposing 3 tools for auto-dev.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/auto-dev/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
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" })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, price_max: 30000, zip: "94103", limit: 20, _apiKey: "your-key" })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", _apiKey: "your-key" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/auto-dev/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io