dbrail_locations
Pack: db-rail · Endpoint: https://gateway.pipeworx.io/db-rail/mcp
Search German / European rail stations, stops, and places by name (e.g. “Berlin Hbf”, “München”, “Zürich HB”). Returns matches with a stop id, coordinates, and country. Keyless. You do NOT have to call this first — dbrail_departures, dbrail_arrivals and dbrail_journeys all accept a plain station name and resolve it themselves; use this when you want to disambiguate between similarly-named stations or need coordinates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search term, e.g. “Berlin Hbf”, “Hamburg”, “Wien Hauptbahnhof”. |
results | number | no | Max results to return (default 10, max 25). |
Example call
Arguments
{
"query": "Berlin Hbf"
}
curl
curl -X POST https://gateway.pipeworx.io/db-rail/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dbrail_locations","arguments":{"query":"Berlin Hbf"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dbrail_locations', {
"query": "Berlin Hbf"
});
More examples
{
"query": "München",
"results": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"db-rail": {
"url": "https://gateway.pipeworx.io/db-rail/mcp"
}
}
}
See Getting Started for client-specific install steps.