locations
Pack: edmtrain · Endpoint: https://gateway.pipeworx.io/edmtrain/mcp
List EDMtrain-supported metro locations (id, city, state, lat/long). Use a location id with the events tool, or filter this list by a city/state keyword. EDMtrain covers North American metros.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional filter, e.g. “Los Angeles”, “TX”, “Brooklyn”. |
Example call
Arguments
{
"query": "Los Angeles"
}
curl
curl -X POST https://gateway.pipeworx.io/edmtrain/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"locations","arguments":{"query":"Los Angeles"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('locations', {
"query": "Los Angeles"
});
More examples
{
"query": "TX"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"edmtrain": {
"url": "https://gateway.pipeworx.io/edmtrain/mcp"
}
}
}
See Getting Started for client-specific install steps.