ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Pipeworx Swisstransport

Skill by brucegutman

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/brucegutman/pipeworx-swisstransport
Or

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"
    }
  }
}

Metadata

Stars4190
Views0
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-brucegutman-pipeworx-swisstransport": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.