rail_station_info

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

Fetch details for a specific WMATA Metro station by station_code. Returns name, address, line codes, adjacent station codes, and coordinates.

Parameters

NameTypeRequiredDescription
station_codestringyes

Example call

Arguments

{
  "station_code": "A01"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('rail_station_info', {
  "station_code": "A01"
});

More examples

{
  "station_code": "C05"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Response from WMATA station info API"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026