Skills pipeworx-swisstransport

Swiss Transport

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-swisstransport" ~/.claude/skills/clawdbot-skills-pipeworx-swisstransport && rm -rf "$T"
manifest: skills/brucegutman/pipeworx-swisstransport/SKILL.md
source content

Swiss Transport

Real-time Swiss public transport data: train, bus, and tram schedules from SBB and regional operators.

search_stations

Find stations by name. Returns station ID, name, and coordinates.

get_connections

Route planning between two locations. Returns departure/arrival times, duration, number of transfers, platform numbers, delays, and a breakdown of each journey section (which train/bus, intermediate stops).

get_stationboard

Live departure board for any station. Shows the next departures with line name, category, destination, platform, and delay information.

Example: Zurich to Bern connections

curl -X POST https://gateway.pipeworx.io/swisstransport/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_connections","arguments":{"from":"Zurich HB","to":"Bern","limit":3}}}'

Example: departures from Geneva

curl -X POST https://gateway.pipeworx.io/swisstransport/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_stationboard","arguments":{"station":"Geneve","limit":5}}}'
{
  "mcpServers": {
    "swisstransport": {
      "url": "https://gateway.pipeworx.io/swisstransport/mcp"
    }
  }
}