GnistAI GnistAI
Log in

EV Charging

EV charging networks, connector types, and charging levels reference data.

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

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

API REST API

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

8 endpoints available:

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

OpenAPI Spec  ·  Full API Docs

CLI 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_network
Get detailed information about an EV charging network.
ParameterTypeRequiredDescription
network_idstringrequiredNetwork ID slug (e.g. tesla-supercharger, chargepoint, ionity).
search_charging_networks
Search the EV charging network database.
ParameterTypeRequiredDescription
querystringrequiredSearch by network name or description.
limitintegeroptional (default: 20)
list_networks_by_country
List EV charging networks operating in a specific country.
ParameterTypeRequiredDescription
countrystringrequiredCountry name (e.g. United States, Germany, Norway).
limitintegeroptional (default: 50)
get_connector_type
Get detailed information about an EV charging connector type.
ParameterTypeRequiredDescription
connector_idstringrequiredConnector ID slug (e.g. ccs1, ccs2, chademo, type-2, nacs).
list_connector_types
List EV charging connector types, optionally filtered by current type.
ParameterTypeRequiredDescription
current_typeanyoptionalFilter by current type: AC or DC.
get_charging_level
Get detailed information about an EV charging level.
ParameterTypeRequiredDescription
level_idstringrequiredLevel ID slug (e.g. level-1, level-2, dc-fast).
list_charging_levels
List all EV charging levels (Level 1, Level 2, DC Fast Charging).
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related