get_station
Pack: openchargemap · Endpoint: https://gateway.pipeworx.io/openchargemap/mcp
Get full detail for a single EV charging station by its Open Charge Map POI ID. Returns the connector types (CCS/CHAdeMO/Tesla connectors), charging speed (kW), operator, status, plus user comments and last-verified date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | Open Charge Map POI ID (e.g. from find_stations results). |
Example call
Arguments
{
"id": 123456,
"_apiKey": "your-openchargemap-api-key"
}
curl
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":"get_station","arguments":{"id":123456,"_apiKey":"your-openchargemap-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_station', {
"id": 123456,
"_apiKey": "your-openchargemap-api-key"
});
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.