Automotive
Data source: Curated dataset (EPA, manufacturer specs)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/vehicle-specs/
claude_desktop_config.json
{
"mcpServers": {
"gnist-vehicle-specs": {
"url": "https://context.gnist.ai/mcp/vehicle-specs/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/vehicle-specs/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_vehicle", "arguments": {"vehicle_id": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/vehicle-specs/
7 endpoints available:
GET /rest/vehicle-specs/get_vehicleGET /rest/vehicle-specs/search_vehiclesGET /rest/vehicle-specs/list_vehicles_by_makeGET /rest/vehicle-specs/list_vehicles_by_body_styleGET /rest/vehicle-specs/get_vehicle_makesGET /rest/vehicle-specs/get_vehicle_body_stylesGET /rest/vehicle-specs/report_feedback
Shell
curl "https://context.gnist.ai/rest/vehicle-specs/get_vehicle?vehicle_id=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/vehicle-specs/get_vehicle",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"vehicle_id": "example"
},
)
print(resp.json())
Command Line
Command
gc vehicle-specs
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (7)
get_vehicleGet detailed specifications for a vehicle.
| Parameter | Type | Required | Description |
|---|---|---|---|
vehicle_id | string | required | Vehicle ID slug (e.g. toyota-camry-2024, ford-f150-2024). |
search_vehiclesSearch the vehicle specifications database.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search by make, model, or engine. |
limit | integer | optional | (default: 20) |
list_vehicles_by_makeList vehicles by manufacturer.
| Parameter | Type | Required | Description |
|---|---|---|---|
make | string | required | Manufacturer name (e.g. Toyota, Ford, BMW). |
limit | integer | optional | (default: 50) |
list_vehicles_by_body_styleList vehicles by body style.
| Parameter | Type | Required | Description |
|---|---|---|---|
body_style | string | required | Body style (e.g. Sedan, SUV, Truck, Coupe). |
limit | integer | optional | (default: 50) |
get_vehicle_makesList all vehicle makes in the database.
get_vehicle_body_stylesList all body styles in the database.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |