get_temperature_anomaly
Pack: gistemp · Endpoint: https://gateway.pipeworx.io/gistemp/mcp
NASA GISTEMP surface temperature anomaly time series (degrees C from 1951-1980 baseline). Pick a region (global_land_ocean, global_land_only, northern_hemisphere, southern_hemisphere) and get monthly + annual + seasonal values back. Use for climate bets (“will 2026 be the hottest year on record”), trend comparisons, or cross-source consistency checks against HadCRUT5/Berkeley Earth. Annual frequency returns one row per year (Jan-Dec mean); monthly returns Jan..Dec per year.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
region | string | no | Which region to fetch. Default global_land_ocean. |
frequency | string | no | annual (one row per year) or monthly (12 rows per year). Default annual. |
start_year | number | no | First year to include (default 1880, the dataset start). |
end_year | number | no | Last year to include (default current year). |
Example call
curl -X POST https://gateway.pipeworx.io/gistemp/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_temperature_anomaly","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gistemp": {
"url": "https://gateway.pipeworx.io/gistemp/mcp"
}
}
}
See Getting Started for client-specific install steps.