GnistAI GnistAI
Log in

Vehicle Specifications

Car specifications database — engine, horsepower, MPG, drivetrain, pricing for popular models.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 7 tools tools 7 7 Automotive

Data source: Curated dataset (EPA, manufacturer specs)

MCP 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"}}}'

API REST API

API Root https://context.gnist.ai/rest/vehicle-specs/

7 endpoints available:

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())

OpenAPI Spec  ·  Full API Docs

CLI 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_vehicle
Get detailed specifications for a vehicle.
ParameterTypeRequiredDescription
vehicle_idstringrequiredVehicle ID slug (e.g. toyota-camry-2024, ford-f150-2024).
search_vehicles
Search the vehicle specifications database.
ParameterTypeRequiredDescription
querystringrequiredSearch by make, model, or engine.
limitintegeroptional (default: 20)
list_vehicles_by_make
List vehicles by manufacturer.
ParameterTypeRequiredDescription
makestringrequiredManufacturer name (e.g. Toyota, Ford, BMW).
limitintegeroptional (default: 50)
list_vehicles_by_body_style
List vehicles by body style.
ParameterTypeRequiredDescription
body_stylestringrequiredBody style (e.g. Sedan, SUV, Truck, Coupe).
limitintegeroptional (default: 50)
get_vehicle_makes
List all vehicle makes in the database.
get_vehicle_body_styles
List all body styles in the database.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related