GnistAI GnistAI
Log in

Electric Vehicle Data

Electric vehicle database — range, battery, charging speed, performance for current EV models.

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

Data source: Curated dataset (EPA, manufacturer specs)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/ev-data/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-ev-data": {
      "url": "https://context.gnist.ai/mcp/ev-data/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/ev-data/" \
  -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_ev", "arguments": {"ev_id": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/ev-data/

8 endpoints available:

Shell
curl "https://context.gnist.ai/rest/ev-data/get_ev?ev_id=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/ev-data/get_ev",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "ev_id": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc ev-data

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (8)

get_ev
Get detailed specifications for an electric vehicle.
ParameterTypeRequiredDescription
ev_idstringrequiredEV ID slug (e.g. tesla-model3-2024, bmw-i4-2024).
search_evs
Search the electric vehicle database.
ParameterTypeRequiredDescription
querystringrequiredSearch by make, model, or features.
limitintegeroptional (default: 20)
list_evs_by_make
List electric vehicles by manufacturer.
ParameterTypeRequiredDescription
makestringrequiredManufacturer (e.g. Tesla, BMW, Hyundai).
limitintegeroptional (default: 50)
list_evs_by_segment
List electric vehicles by market segment.
ParameterTypeRequiredDescription
segmentstringrequiredMarket segment (Economy, Mid-range, Premium, Luxury, Performance).
limitintegeroptional (default: 50)
list_evs_by_range
List EVs by range, sorted from highest to lowest.
ParameterTypeRequiredDescription
min_range_kmintegeroptional (default: 0)
limitintegeroptional (default: 20)
get_ev_makes
List all EV manufacturers in the database.
get_ev_segments
List all market segments in the database.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related