data.gov.sg

live DataGovernmentAsia

Singapore open data — ~2000 datasets + real-time weather, air quality, taxi positions, traffic. No auth.

9 tools
0ms auth
free tier 50 calls/day

Tools

search_datasets

Browse / search the dataset catalog.

Parameters
Name Type Description
query opt string
page opt number
page_size opt number
Try it
get_dataset required: dataset_id

Dataset metadata + column schema.

Parameters
Name Type Description
dataset_id req string
Try it
query_dataset required: dataset_id

Fetch rows from a dataset.

Parameters
Name Type Description
dataset_id req string
limit opt number
offset opt number
filters opt object
Try it
weather_now

Current temperature, humidity, wind, rain across Singapore weather stations.

No parameters required.

Try it
air_quality_psi

PSI by region.

No parameters required.

Try it
air_quality_pm25

PM2.5 µg/m³ by region.

No parameters required.

Try it
uv_index

Current UV index.

No parameters required.

Try it
taxi_availability

Live taxi positions.

No parameters required.

Try it
traffic_incidents

Current expressway / road incidents.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/data-gov-sg/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/data-gov-sg/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_datasets","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_datasets", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("singapore open data — ~2000 datasets + real-time weather, air quality, taxi positions, traffic");