septa_next_to_arrive
Pack: septa · Endpoint: https://gateway.pipeworx.io/septa/mcp
Next SEPTA Regional Rail trains from an origin station to a destination station in Philly — direct trains and connecting itineraries (with transfer station), departure/arrival times, and live delay status. Answers “when is the next train from X to Y” in Philadelphia. Example: septa_next_to_arrive({ orig: “Suburban Station”, dest: “Airport Terminal B”, n: 3 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
orig | string | yes | Origin Regional Rail station, e.g. “Suburban Station”, “Fox Chase” (fuzzy-matched) |
dest | string | yes | Destination Regional Rail station, e.g. “Airport Terminal B”, “Ardmore” (fuzzy-matched) |
n | number | no | How many upcoming trains to return (default 3, max 10) |
Example call
curl -X POST https://gateway.pipeworx.io/septa/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"septa_next_to_arrive","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"septa": {
"url": "https://gateway.pipeworx.io/septa/mcp"
}
}
}
See Getting Started for client-specific install steps.