Data source: Curated dataset (EPA, manufacturer specs)
https://context.gnist.ai/mcp/ev-data/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (8)
get_evsearch_evslist_evs_by_makelist_evs_by_segmentlist_evs_by_rangeget_ev_makesget_ev_segmentsreport_feedback
get_evGet detailed specifications for an electric vehicle.
Returns range, battery capacity, charging specs, performance, and pricing.
| Parameter | Type | Required | Description |
|---|---|---|---|
ev_id | string | required | EV ID slug (e.g. tesla-model3-2024, bmw-i4-2024). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_ev",
"arguments": {
"ev_id": "example"
}
}
}search_evsSearch the electric vehicle database.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search by make, model, or features. |
limit | integer | optional | (default: 20) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_evs",
"arguments": {
"query": "example"
}
}
}list_evs_by_makeList electric vehicles by manufacturer.
| Parameter | Type | Required | Description |
|---|---|---|---|
make | string | required | Manufacturer (e.g. Tesla, BMW, Hyundai). |
limit | integer | optional | (default: 50) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_evs_by_make",
"arguments": {
"make": "example"
}
}
}list_evs_by_segmentList electric vehicles by market segment.
| Parameter | Type | Required | Description |
|---|---|---|---|
segment | string | required | Market segment (Economy, Mid-range, Premium, Luxury, Performance). |
limit | integer | optional | (default: 50) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_evs_by_segment",
"arguments": {
"segment": "example"
}
}
}list_evs_by_rangeList EVs by range, sorted from highest to lowest.
| Parameter | Type | Required | Description |
|---|---|---|---|
min_range_km | integer | optional | (default: 0) |
limit | integer | optional | (default: 20) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_evs_by_range",
"arguments": {}
}
}get_ev_makesList all EV manufacturers in the database.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_ev_makes",
"arguments": {}
}
}get_ev_segmentsList all market segments in the database.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_ev_segments",
"arguments": {}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
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"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/ev-data/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_ev",
"arguments": {
"ev_id": "example"
}
}
},
)
print(resp.json())