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

FieldTypeDescription
temperatureobjectCurrent temperature data across weather stations
humidityobject | nullCurrent relative humidity readings by station
windobject | nullCurrent wind speed readings by station
rainfallobject | nullCurrent 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.

Regenerated from source · build May 21, 2026