trimet_alerts
Pack: trimet · Endpoint: https://gateway.pipeworx.io/trimet/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/trimet_alerts for the schema, then POST the same URL with its arguments for the data.
Current TriMet service alerts — detours, disruptions, elevator and stop closures — with cause, effect, affected routes and stops, and the active period of each. AUTHORITATIVE for “is anything disrupted on TriMet right now”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
route | string | no | Optional: only alerts naming this route id (e.g. “90”). |
_apiKey | string | no | TriMet appID. Free from ${SIGNUP}. |
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/trimet/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trimet_alerts","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('trimet_alerts', {});
More examples
{
"route": "90"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"trimet": {
"url": "https://gateway.pipeworx.io/trimet/mcp"
}
}
}
See Getting Started for client-specific install steps.