find_stations
ActiveTool of mcp-openchargemap
Find EV charging stations (electric vehicle chargers) near a place. Pass a `location` name (city/place, e.g. "San Francisco", "Berlin", "Austin TX") and it is geocoded automatically — OR pass explicit latitude+longitude. 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 schema
{
"type": "object",
"examples": [
{
"location": "San Francisco",
"max_results": 10
},
{
"location": "Berlin",
"connection_type": "CCS"
},
{
"distance": 5,
"latitude": 37.7749,
"longitude": -122.4194,
"distance_unit": "KM"
}
],
"properties": {
"_apiKey": {
"type": "string",
"description": "Optional — your own Open Charge Map API key for higher limits; works without one."
},
"country": {
"type": "string",
"description": "Optional ISO country code (e.g. \"US\", \"FR\") to disambiguate an ambiguous `location` like \"Paris\" or \"Springfield\"."
},
"distance": {
"type": "number",
"description": "Search radius around the location (default 10)."
},
"latitude": {
"type": "number",
"description": "Latitude of the search center, e.g. 37.7749. Optional if `location` is given."
},
"location": {
"type": "string",
"description": "Place/city name to search near, e.g. \"San Francisco\", \"Berlin\", \"Austin TX\". Geocoded automatically. Provide THIS or latitude+longitude."
},
"longitude": {
"type": "number",
"description": "Longitude of the search center, e.g. -122.4194. Optional if `location` is given."
},
"max_results": {
"type": "number",
"description": "Maximum number of stations to return (default 20, max 100)."
},
"distance_unit": {
"enum": [
"KM",
"Miles"
],
"type": "string",
"description": "Unit for the search radius (default \"KM\")."
},
"connection_type": {
"type": "string",
"description": "Optional connector type name to filter by, e.g. \"CCS\", \"CHAdeMO\", \"Tesla\". Case-insensitive substring match against each station's connector titles."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
mcp-openchargemap
https://github.com/pipeworx-io/mcp-openchargemap
2/7 registries