weather_now
Pack: data-gov-sg · Endpoint: https://gateway.pipeworx.io/data-gov-sg/mcp
Current temperature, humidity, wind, rain across Singapore weather stations.
Example call
curl -X POST https://gateway.pipeworx.io/data-gov-sg/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"weather_now","arguments":{}}}'
Response shape
Always returns: temperature
| Field | Type | Description |
|---|---|---|
temperature | object | Current temperature data across weather stations |
humidity | object | null | Current relative humidity readings by station |
wind | object | null | Current wind speed readings by station |
rainfall | object | null | Current rainfall readings by station |
Full JSON Schema
{
"type": "object",
"properties": {
"temperature": {
"type": "object",
"description": "Current temperature data across weather stations"
},
"humidity": {
"type": [
"object",
"null"
],
"description": "Current relative humidity readings by station"
},
"wind": {
"type": [
"object",
"null"
],
"description": "Current wind speed readings by station"
},
"rainfall": {
"type": [
"object",
"null"
],
"description": "Current rainfall readings by station"
}
},
"required": [
"temperature"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-gov-sg": {
"url": "https://gateway.pipeworx.io/data-gov-sg/mcp"
}
}
}
See Getting Started for client-specific install steps.