find_stations
Pack: openchargemap · Endpoint: https://gateway.pipeworx.io/openchargemap/mcp
Find EV charging stations (electric vehicle chargers) near a location. Returns nearby charging stations with operator, status, available connector types (CCS/CHAdeMO/Tesla connectors), charging speed (kW), and distance. Filter by connector type to find e.g. only CCS or Tesla chargers.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | Latitude of the search center, e.g. 37.7749. |
longitude | number | yes | Longitude of the search center, e.g. -122.4194. |
distance | number | no | Search radius around the location (default 10). |
distance_unit | string | no | Unit for the search radius (default “KM”). |
max_results | number | no | Maximum number of stations to return (default 20, max 100). |
connection_type | string | no | Optional connector type name to filter by, e.g. “CCS”, “CHAdeMO”, “Tesla”. Case-insensitive substring match against each station’s connector titles. |
Example call
curl -X POST https://gateway.pipeworx.io/openchargemap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_stations","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openchargemap": {
"url": "https://gateway.pipeworx.io/openchargemap/mcp"
}
}
}
See Getting Started for client-specific install steps.