autodev_listings

Pack: auto-dev · Endpoint: https://gateway.pipeworx.io/auto-dev/mcp

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” })

Parameters

NameTypeRequiredDescription
makestringnoVehicle make, e.g. “Toyota” (optional)
modelstringnoVehicle model, e.g. “Camry” (optional)
year_minnumbernoOldest model year to include (optional)
year_maxnumbernoNewest model year to include (optional)
price_maxnumbernoMaximum listing price in USD (optional)
zipstringnoZIP code to center the search on (optional)
radiusnumbernoSearch radius in miles from zip (optional)
limitnumbernoMax listings to return (default 20, max 50)
_apiKeystringyesAuto.dev API key (1,000 free calls/mo at auto.dev)

Example call

Arguments

{
  "make": "Toyota",
  "model": "Camry",
  "year_min": 2020,
  "price_max": 30000,
  "zip": "94103",
  "limit": 20,
  "_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_listings","arguments":{"make":"Toyota","model":"Camry","year_min":2020,"price_max":30000,"zip":"94103","limit":20,"_apiKey":"your-auto-dev-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('autodev_listings', {
  "make": "Toyota",
  "model": "Camry",
  "year_min": 2020,
  "price_max": 30000,
  "zip": "94103",
  "limit": 20,
  "_apiKey": "your-auto-dev-api-key"
});

More examples

{
  "make": "Honda",
  "year_min": 2018,
  "price_max": 25000,
  "radius": 50,
  "_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