GnistAI GnistAI
Log in

EV Charging

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

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 8 tools tools 8 8 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Automotive

Data source: Curated dataset (industry sources)

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/ev-charging/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (8)

get_charging_network

Get detailed information about an EV charging network.

Returns name, country coverage, connector types, pricing model, station count, and description.

ParameterTypeRequiredDescription
network_idstringrequiredNetwork ID slug (e.g. tesla-supercharger, chargepoint, ionity).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_charging_network",
    "arguments": {
      "network_id": "example"
    }
  }
}
search_charging_networks

Search the EV charging network database.

ParameterTypeRequiredDescription
querystringrequiredSearch by network name or description.
limitintegeroptional (default: 20)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_charging_networks",
    "arguments": {
      "query": "example"
    }
  }
}
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)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_networks_by_country",
    "arguments": {
      "country": "NO"
    }
  }
}
get_connector_type

Get detailed information about an EV charging connector type.

Returns standard, max power, voltage range, current type, regions, and description.

ParameterTypeRequiredDescription
connector_idstringrequiredConnector ID slug (e.g. ccs1, ccs2, chademo, type-2, nacs).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_connector_type",
    "arguments": {
      "connector_id": "example"
    }
  }
}
list_connector_types

List EV charging connector types, optionally filtered by current type.

ParameterTypeRequiredDescription
current_typeanyoptionalFilter by current type: AC or DC.
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_connector_types",
    "arguments": {}
  }
}
get_charging_level

Get detailed information about an EV charging level.

Returns power range, typical charge time, use case, compatible connectors, and description.

ParameterTypeRequiredDescription
level_idstringrequiredLevel ID slug (e.g. level-1, level-2, dc-fast).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_charging_level",
    "arguments": {
      "level_id": "example"
    }
  }
}
list_charging_levels

List all EV charging levels (Level 1, Level 2, DC Fast Charging).

JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_charging_levels",
    "arguments": {}
  }
}
report_feedback

Report 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'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

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"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/ev-charging/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_charging_network",
    "arguments": {
      "network_id": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Automotive)

Resources