bay511_alerts

Pack: 511-sf-bay · Endpoint: https://gateway.pipeworx.io/511-sf-bay/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/bay511_alerts for the schema, then POST the same URL with its arguments for the data.

Current service alerts for a Bay Area operator — delays, detours, elevator outages, planned closures — with cause, effect, the routes and stops affected, and the period each alert is active. AUTHORITATIVE for “is there disruption on BART/Muni right now”.

Parameters

NameTypeRequiredDescription
agencystringyesOperator code from bay511_operators (e.g. “SF”, “BA”, “CT”).
_apiKeystringno511 SF Bay API key. Free from ${SIGNUP}.

Example call

Arguments

{
  "agency": "BA"
}

curl

curl -X POST https://gateway.pipeworx.io/511-sf-bay/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bay511_alerts","arguments":{"agency":"BA"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('bay511_alerts', {
  "agency": "BA"
});

Connect

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

{
  "mcpServers": {
    "511-sf-bay": {
      "url": "https://gateway.pipeworx.io/511-sf-bay/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026