tankerkoenig_stations_nearby
Pack: tankerkoenig · Endpoint: https://gateway.pipeworx.io/tankerkoenig/mcp
German gas station fuel prices near a location — Benzinpreise Germany, real-time from the official MTS-K feed. Find the cheapest diesel, E5, or E10 near a point in Germany with price in EUR per liter, brand, address, distance, and open status. Coordinates are required: geocode a German city or address first (e.g. via a geocoding tool) — Berlin is lat 52.52, lng 13.40. Data covers Germany only. Example: tankerkoenig_stations_nearby({ latitude: 52.52, longitude: 13.40, radius_km: 5, fuel: “diesel”, sort: “price” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | Latitude of the search center (Germany), e.g. 52.52 for Berlin |
longitude | number | yes | Longitude of the search center (Germany), e.g. 13.40 for Berlin |
radius_km | number | no | Search radius in kilometers (default 5, maximum 25 — larger values are clamped) |
fuel | string | no | Fuel type: “e5” (Super 95), “e10” (Super E10), “diesel”, or “all” for all three prices per station (default “all”) |
sort | string | no | Sort order: “distance” (default) or “price” (cheapest first). Sorting by price requires a single fuel type (e5, e10, or diesel), the API rejects sort by price when fuel is “all” |
open_only | boolean | no | Return only stations that are currently open (default false) |
_apiKey | string | no |
Example call
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_stations_nearby","arguments":{}}}'
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.