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

NameTypeRequiredDescription
latitudenumberyesLatitude of the search center (Germany), e.g. 52.52 for Berlin
longitudenumberyesLongitude of the search center (Germany), e.g. 13.40 for Berlin
radius_kmnumbernoSearch radius in kilometers (default 5, maximum 25 — larger values are clamped)
fuelstringnoFuel type: “e5” (Super 95), “e10” (Super E10), “diesel”, or “all” for all three prices per station (default “all”)
sortstringnoSort 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_onlybooleannoReturn only stations that are currently open (default false)
_apiKeystringno

Example call

Arguments

{
  "latitude": 52.52,
  "longitude": 13.4,
  "radius_km": 5,
  "fuel": "diesel",
  "sort": "price",
  "_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_stations_nearby","arguments":{"latitude":52.52,"longitude":13.4,"radius_km":5,"fuel":"diesel","sort":"price","_apiKey":"your-tankerkoenig-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('tankerkoenig_stations_nearby', {
  "latitude": 52.52,
  "longitude": 13.4,
  "radius_km": 5,
  "fuel": "diesel",
  "sort": "price",
  "_apiKey": "your-tankerkoenig-api-key"
});

More examples

{
  "latitude": 48.13,
  "longitude": 11.58,
  "radius_km": 10,
  "fuel": "e5",
  "sort": "distance",
  "open_only": true,
  "_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.

Regenerated from source · build August 31, 2026