cars
Pack: api-ninjas · Endpoint: https://gateway.pipeworx.io/api-ninjas/mcp
API Ninjas cars: vehicle specifications by make, model, year, or fuel type. Returns a list of { make, model, year, fuel_type, cylinders, transmission, drive, city_mpg, highway_mpg, class }. Example: cars({ make: “toyota”, model: “camry”, year: 2020 }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
make | string | no | Vehicle manufacturer, e.g. ‘toyota’, ‘ford’ |
model | string | no | Vehicle model, e.g. ‘camry’, ‘mustang’ |
year | number | no | Model year, e.g. 2020 |
fuel_type | string | no | Fuel type, e.g. ‘gas’, ‘diesel’, ‘electricity’ |
limit | number | no | Max results to return (default 5, max 50) |
Example call
curl -X POST https://gateway.pipeworx.io/api-ninjas/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cars","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"api-ninjas": {
"url": "https://gateway.pipeworx.io/api-ninjas/mcp"
}
}
}
See Getting Started for client-specific install steps.