NASA POWER

liveClimateEnergyAgriculture

NASA Prediction of Worldwide Energy Resources — solar irradiance + meteorology for agriculture / renewable energy modeling. Global, 1981-present.

3tools
0msauth
free tier50 calls/day

Tools

point_datarequired: latitude, longitude, start, end

Time-series observations for a single coordinate (daily, hourly, or monthly).

Parameters
NameTypeDescription
latitudereqnumber
longitudereqnumber
startreqstringYYYYMMDD
endreqstringYYYYMMDD
parametersoptstringComma-separated POWER parameter codes
communityoptstringAG | RE | SB
temporaloptstringhourly | daily | monthly
Try it
climatologyrequired: latitude, longitude

Long-term monthly averages.

Parameters
NameTypeDescription
latitudereqnumber
longitudereqnumber
parametersoptstring
communityoptstring
Try it
regional_datarequired: latitude_min, latitude_max, longitude_min, longitude_max, start, end

Bounding-box query — daily/monthly over a rectangle.

Parameters
NameTypeDescription
latitude_minreqnumber
latitude_maxreqnumber
longitude_minreqnumber
longitude_maxreqnumber
startreqstring
endreqstring
parametersoptstring
communityoptstring
temporaloptstring
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/nasa-power/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/nasa-power/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"point_data","arguments":{"latitude": 37.7749, "longitude": -122.4194, "start": "2025-01-01", "end": "2025-01-01"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("point_data", {"latitude":"example","longitude":"example","start":"example","end":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("nasa prediction of worldwide energy resources — solar irradiance + meteorology for agriculture / renewable energy modeling");

Related packs

Other Pipeworx packs in the same categories (Climate, Energy, Agriculture):