amtrak_station_board

Pack: amtrak · Endpoint: https://gateway.pipeworx.io/amtrak/mcp

Amtrak station departures/arrivals board — upcoming trains at a station. “What trains are arriving at Chicago Union?”, “next train at CHI”, “station board for Denver”. Accepts a 3-letter Amtrak station code (“CHI”, “NYP”, “LAX”) or a station name (“Chicago”, “Portland”). Returns trains currently en route to that station with route, scheduled vs estimated arrival, delay minutes, and status. Live community mirror of Amtrak tracking (api-v3.amtraker.com). Example: amtrak_station_board({ station: “CHI” })

Parameters

NameTypeRequiredDescription
stationstringyesAmtrak station code (e.g. “CHI”, “NYP”, “SEA”) or station/city name (e.g. “Chicago”, “Denver”)
limitnumbernoMax trains to return, 1-15 (default 15)

Example call

Arguments

{
  "station": "CHI"
}

curl

curl -X POST https://gateway.pipeworx.io/amtrak/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"amtrak_station_board","arguments":{"station":"CHI"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('amtrak_station_board', {
  "station": "CHI"
});

More examples

{
  "station": "Denver",
  "limit": 10
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "amtrak": {
      "url": "https://gateway.pipeworx.io/amtrak/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026