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
| Name | Type | Required | Description |
|---|---|---|---|
make | string | no | Vehicle make, e.g. “Toyota” (optional) |
model | string | no | Vehicle model, e.g. “Camry” (optional) |
year_min | number | no | Oldest model year to include (optional) |
year_max | number | no | Newest model year to include (optional) |
price_max | number | no | Maximum listing price in USD (optional) |
zip | string | no | ZIP code to center the search on (optional) |
radius | number | no | Search radius in miles from zip (optional) |
limit | number | no | Max listings to return (default 20, max 50) |
_apiKey | string | yes | Auto.dev API key (1,000 free calls/mo at auto.dev) |
Example call
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":{}}}'
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.