tfnsw_carparks
Pack: transport-nsw · Endpoint: https://gateway.pipeworx.io/transport-nsw/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/tfnsw_carparks for the schema, then POST the same URL with its arguments for the data.
Live occupancy at Transport for NSW commuter car parks — spaces total, spaces taken and when the count was last updated. AUTHORITATIVE for “is there parking left at my park-and-ride station”; call with no id to list every facility.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
facility_id | string | no | Optional facility id for live occupancy. Omit to list every car park and its id. |
_apiKey | string | no | Transport for NSW API key. Free from ${SIGNUP}. |
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/transport-nsw/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tfnsw_carparks","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tfnsw_carparks', {});
More examples
{
"facility_id": "6"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"transport-nsw": {
"url": "https://gateway.pipeworx.io/transport-nsw/mcp"
}
}
}
See Getting Started for client-specific install steps.