mbta_stops
Pack: mbta · Endpoint: https://gateway.pipeworx.io/mbta/mcp
List the stops and stations on an MBTA route — Boston subway T lines, commuter rail lines, bus routes, ferries. Returns stop id, name, municipality, and wheelchair accessibility, in route order. Example: mbta_stops({ route: “Red” }) or mbta_stops({ route: “CR-Worcester” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
route | string | yes | Route id from mbta_routes, e.g. “Red”, “Green-D”, “CR-Providence”, “66” |
_apiKey | string | no | Optional: free MBTA v3 API key from api-v3.mbta.com for higher rate limits |
Example call
curl -X POST https://gateway.pipeworx.io/mbta/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mbta_stops","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mbta": {
"url": "https://gateway.pipeworx.io/mbta/mcp"
}
}
}
See Getting Started for client-specific install steps.