Data source: Curated dataset (industry sources)
https://context.gnist.ai/mcp/ev-charging/
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_charging_networksearch_charging_networkslist_networks_by_countryget_connector_typelist_connector_typesget_charging_levellist_charging_levelsreport_feedback
get_charging_networkGet detailed information about an EV charging network.
Returns name, country coverage, connector types, pricing model, station count, and description.
| Parameter | Type | Required | Description |
|---|---|---|---|
network_id | string | required | Network ID slug (e.g. tesla-supercharger, chargepoint, ionity). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_charging_network",
"arguments": {
"network_id": "example"
}
}
}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) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_charging_networks",
"arguments": {
"query": "example"
}
}
}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) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_networks_by_country",
"arguments": {
"country": "NO"
}
}
}get_connector_typeGet detailed information about an EV charging connector type.
Returns standard, max power, voltage range, current type, regions, and description.
| Parameter | Type | Required | Description |
|---|---|---|---|
connector_id | string | required | Connector ID slug (e.g. ccs1, ccs2, chademo, type-2, nacs). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_connector_type",
"arguments": {
"connector_id": "example"
}
}
}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. |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_connector_types",
"arguments": {}
}
}get_charging_levelGet detailed information about an EV charging level.
Returns power range, typical charge time, use case, compatible connectors, and description.
| Parameter | Type | Required | Description |
|---|---|---|---|
level_id | string | required | Level ID slug (e.g. level-1, level-2, dc-fast). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_charging_level",
"arguments": {
"level_id": "example"
}
}
}list_charging_levelsList all EV charging levels (Level 1, Level 2, DC Fast Charging).
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_charging_levels",
"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-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"}}}'
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())