bart_trip_planner
Pack: bart · Endpoint: https://gateway.pipeworx.io/bart/mcp
Plan a BART trip between two Bay Area stations — the next trains from origin to destination with departure and arrival times, trip duration, legs (line, transfer stations, bikes), and the fare (Clipper and discount prices). Covers trips like SF to Oakland, Embarcadero to SFO airport, Berkeley to Millbrae. Stations accept 4-letter codes or names. Example: bart_trip_planner({ from: “Embarcadero”, to: “SFIA” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
from | string | yes | Origin station — code or name, e.g. “EMBR” or “Embarcadero” |
to | string | yes | Destination station — code or name, e.g. “SFIA” or “SFO airport” |
trips | number | no | How many upcoming trips to return, 1-4 (default 4) |
_apiKey | string | no | Optional: your own BART API key (defaults to the BART public key) |
Example call
curl -X POST https://gateway.pipeworx.io/bart/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bart_trip_planner","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bart": {
"url": "https://gateway.pipeworx.io/bart/mcp"
}
}
}
See Getting Started for client-specific install steps.