list_feeds
Pack: transit-land · Endpoint: https://gateway.pipeworx.io/transit-land/mcp
List available GTFS (or GTFS-RT/MDS) feeds aggregated by Transitland; filter by spec type and paginate with limit; returns feed id, url, operator, and last fetch status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
spec | string | no | gtfs | gtfs-rt | mds (default gtfs) |
limit | number | no |
Example call
Arguments
{
"spec": "gtfs",
"limit": 50
}
curl
curl -X POST https://gateway.pipeworx.io/transit-land/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_feeds","arguments":{"spec":"gtfs","limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_feeds', {
"spec": "gtfs",
"limit": 50
});
Response shape
| Field | Type | Description |
|---|---|---|
feeds | array | List of available feeds |
meta | object |
Full JSON Schema
{
"type": "object",
"properties": {
"feeds": {
"type": "array",
"items": {
"type": "object",
"properties": {
"authorization": {
"type": "object",
"properties": {
"info_url": {
"type": "string"
},
"param_name": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"feed_state": {
"type": "object",
"properties": {
"feed_version": {
"type": [
"null",
"object"
]
}
}
},
"feed_versions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"earliest_calendar_date": {
"type": "string"
},
"fetched_at": {
"type": "string"
},
"id": {
"type": "number"
},
"latest_calendar_date": {
"type": "string"
},
"sha1": {
"type": "string"
},
"url": {
"type": "string"
}
}
}
},
"id": {
"type": "number",
"description": "Transitland feed onestop_id"
},
"languages": {
"type": "null"
},
"license": {
"type": "object",
"properties": {
"attribution_instructions": {
"type": "string"
},
"attribution_text": {
"type": "string"
},
"commercial_use_allowed": {
"type": "string"
},
"create_derived_product": {
"type": "string"
},
"redistribution_allowed": {
"type": "string"
},
"share_alike_optional": {
"type": "string"
},
"spdx_identifier": {
"type": "string"
},
"url": {
"type": "string"
},
"use_without_attribution": {
"type": "string"
}
}
},
"name": {
"type": "null"
},
"onestop_id": {
"type": "string"
},
"spec": {
"type": "string",
"description": "Feed specification (gtfs|gtfs-rt|mds)"
},
"tags": {
"type": "object",
"properties": {
"exclude_from_global_query": {
"type": "string"
},
"gtfs_data_exchange": {
"type": "string"
},
"manual_import": {
"type": "string"
},
"notes": {
"type": "string"
}
}
},
"urls": {
"type": "object",
"properties": {
"gbfs_auto_discovery": {
"type": "string"
},
"mds_provider": {
"type": "string"
},
"realtime_alerts": {
"type": "string"
},
"realtime_trip_updates": {
"type": "string"
},
"realtime_vehicle_positions": {
"type": "string"
},
"static_current": {
"type": "string"
},
"static_historic": {
"type": "array",
"items": {
"type": [
"string",
null
]
}
},
"static_planned": {
"type": "array",
"items": {}
}
},
"description": "Feed download/access URLs"
}
}
},
"description": "List of available feeds"
},
"meta": {
"type": "object",
"properties": {
"after": {
"type": "number"
},
"next": {
"type": "string"
}
}
}
},
"description": "Available GTFS/GTFS-RT/MDS feeds"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"transit-land": {
"url": "https://gateway.pipeworx.io/transit-land/mcp"
}
}
}
See Getting Started for client-specific install steps.