get_zonal_anomalies

Pack: gistemp · Endpoint: https://gateway.pipeworx.io/gistemp/mcp

NASA GISTEMP annual zonal anomalies (degrees C from 1951-1980 baseline) for 8 latitude bands: global, Northern Hemisphere, Southern Hemisphere, 24N-90N, 24S-24N (tropics), 90S-24S, 64N-90N (Arctic), 44S-24S, etc. Use for regional climate bets (“will the Arctic warm faster than the tropics in 2026”) or bets framed around polar amplification.

Parameters

NameTypeRequiredDescription
start_yearnumbernoFirst year to include (default 1880).
end_yearnumbernoLast year to include (default current year).

Example call

Arguments

{
  "start_year": 2000,
  "end_year": 2024
}

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_zonal_anomalies","arguments":{"start_year":2000,"end_year":2024}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_zonal_anomalies', {
  "start_year": 2000,
  "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