lametro_stop
Pack: la-metro · Endpoint: https://gateway.pipeworx.io/la-metro/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/lametro_stop for the schema, then POST the same URL with its arguments for the data.
One LA Metro stop by stop id — coordinates, name, and the accessibility and zone attributes LACMTA publishes for it. Returns GeoJSON properties flattened for reading.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
stop_id | string | yes | Numeric stop id, as returned by lametro_route_stops (e.g. “3202”). |
agency | string | no | ’LACMTA’ (bus, default) or ‘LACMTA_Rail’. |
Example call
Arguments
{
"stop_id": "3202"
}
curl
curl -X POST https://gateway.pipeworx.io/la-metro/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"lametro_stop","arguments":{"stop_id":"3202"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('lametro_stop', {
"stop_id": "3202"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"la-metro": {
"url": "https://gateway.pipeworx.io/la-metro/mcp"
}
}
}
See Getting Started for client-specific install steps.