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

NameTypeRequiredDescription
regionstringnoWhich region to fetch. Default global_land_ocean.
frequencystringnoannual (one row per year) or monthly (12 rows per year). Default annual.
start_yearnumbernoFirst year to include (default 1880, the dataset start).
end_yearnumbernoLast year to include (default current year).

Example call

Arguments

{
  "region": "global_land_ocean",
  "frequency": "annual"
}

curl

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":{"region":"global_land_ocean","frequency":"annual"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_temperature_anomaly', {
  "region": "global_land_ocean",
  "frequency": "annual"
});

More examples

{
  "region": "northern_hemisphere",
  "frequency": "monthly",
  "start_year": 2015,
  "end_year": 2024
}

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.

Regenerated from source · build September 1, 2026