tankerkoenig_station_details
Pack: tankerkoenig · Endpoint: https://gateway.pipeworx.io/tankerkoenig/mcp
Full detail for one German gas station by its Tankerkoenig station id (UUID from tankerkoenig_stations_nearby): opening times, current E5 / E10 / diesel prices in EUR per liter, brand, address, state, and open status. MTS-K real-time data, Germany only. Example: tankerkoenig_station_details({ station_id: “94e70fc4-b22f-4e5a-877f-bc1082cdae81” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
station_id | string | yes | Station UUID, e.g. “94e70fc4-b22f-4e5a-877f-bc1082cdae81” (from tankerkoenig_stations_nearby) |
_apiKey | string | no |
Example call
Arguments
{
"station_id": "94e70fc4-b22f-4e5a-877f-bc1082cdae81",
"_apiKey": "your-tankerkoenig-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/tankerkoenig/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tankerkoenig_station_details","arguments":{"station_id":"94e70fc4-b22f-4e5a-877f-bc1082cdae81","_apiKey":"your-tankerkoenig-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tankerkoenig_station_details', {
"station_id": "94e70fc4-b22f-4e5a-877f-bc1082cdae81",
"_apiKey": "your-tankerkoenig-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tankerkoenig": {
"url": "https://gateway.pipeworx.io/tankerkoenig/mcp"
}
}
}
See Getting Started for client-specific install steps.