Automotive
Data source: Curated dataset (industry sources)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/ev-charging/
claude_desktop_config.json
{
"mcpServers": {
"gnist-ev-charging": {
"url": "https://context.gnist.ai/mcp/ev-charging/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/ev-charging/" \
-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_charging_network", "arguments": {"network_id": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/ev-charging/
8 endpoints available:
GET /rest/ev-charging/get_charging_networkGET /rest/ev-charging/search_charging_networksGET /rest/ev-charging/list_networks_by_countryGET /rest/ev-charging/get_connector_typeGET /rest/ev-charging/list_connector_typesGET /rest/ev-charging/get_charging_levelGET /rest/ev-charging/list_charging_levelsGET /rest/ev-charging/report_feedback
Shell
curl "https://context.gnist.ai/rest/ev-charging/get_charging_network?network_id=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/ev-charging/get_charging_network",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"network_id": "example"
},
)
print(resp.json())
Command Line
Command
gc ev-charging
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (8)
get_charging_networkGet detailed information about an EV charging network.
| Parameter | Type | Required | Description |
|---|---|---|---|
network_id | string | required | Network ID slug (e.g. tesla-supercharger, chargepoint, ionity). |
search_charging_networksSearch the EV charging network database.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search by network name or description. |
limit | integer | optional | (default: 20) |
list_networks_by_countryList EV charging networks operating in a specific country.
| Parameter | Type | Required | Description |
|---|---|---|---|
country | string | required | Country name (e.g. United States, Germany, Norway). |
limit | integer | optional | (default: 50) |
get_connector_typeGet detailed information about an EV charging connector type.
| Parameter | Type | Required | Description |
|---|---|---|---|
connector_id | string | required | Connector ID slug (e.g. ccs1, ccs2, chademo, type-2, nacs). |
list_connector_typesList EV charging connector types, optionally filtered by current type.
| Parameter | Type | Required | Description |
|---|---|---|---|
current_type | any | optional | Filter by current type: AC or DC. |
get_charging_levelGet detailed information about an EV charging level.
| Parameter | Type | Required | Description |
|---|---|---|---|
level_id | string | required | Level ID slug (e.g. level-1, level-2, dc-fast). |
list_charging_levelsList all EV charging levels (Level 1, Level 2, DC Fast Charging).
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") |