bart_advisories
Pack: bart · Endpoint: https://gateway.pipeworx.io/bart/mcp
Current BART service advisories and delays for the San Francisco Bay Area train system, plus elevator outage status at stations. Answers “is BART delayed right now”, “are there BART service alerts”, “which BART elevators are out”. Example: bart_advisories({})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | no | Optional: your own BART API key (defaults to the BART public key) |
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/bart/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bart_advisories","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bart_advisories', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bart": {
"url": "https://gateway.pipeworx.io/bart/mcp"
}
}
}
See Getting Started for client-specific install steps.