regional_data
Pack: nasa-power · Endpoint: https://gateway.pipeworx.io/nasa-power/mcp
Bounding-box query — daily or monthly data over a rectangular region. Bbox area max ~10° × 10°.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude_min | number | yes | |
latitude_max | number | yes | |
longitude_min | number | yes | |
longitude_max | number | yes | |
start | string | yes | YYYYMMDD |
end | string | yes | YYYYMMDD |
parameters | string | no | |
community | string | no | |
temporal | string | no | daily (default) | monthly |
Example call
Arguments
{
"latitude_min": 39,
"latitude_max": 41,
"longitude_min": -75,
"longitude_max": -73,
"start": "20230101",
"end": "20231231"
}
curl
curl -X POST https://gateway.pipeworx.io/nasa-power/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"regional_data","arguments":{"latitude_min":39,"latitude_max":41,"longitude_min":-75,"longitude_max":-73,"start":"20230101","end":"20231231"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('regional_data', {
"latitude_min": 39,
"latitude_max": 41,
"longitude_min": -75,
"longitude_max": -73,
"start": "20230101",
"end": "20231231"
});
More examples
{
"latitude_min": 34,
"latitude_max": 36,
"longitude_min": 138,
"longitude_max": 140,
"start": "20230101",
"end": "20231231",
"parameters": "T2M,ALLSKY_SFC_SW_DWN,WS10M",
"community": "RE",
"temporal": "monthly"
}
Response shape
| Field | Type | Description |
|---|---|---|
properties | object | Metadata about the regional request |
header | object | Header information with temporal and geographic bounds |
geometry | object | Geographic geometry of the region |
features | array | Array of regional data records |
Full JSON Schema
{
"type": "object",
"description": "Regional bounding-box data from NASA POWER API",
"properties": {
"properties": {
"type": "object",
"description": "Metadata about the regional request"
},
"header": {
"type": "object",
"description": "Header information with temporal and geographic bounds"
},
"geometry": {
"type": "object",
"description": "Geographic geometry of the region"
},
"features": {
"type": "array",
"description": "Array of regional data records",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "GeoJSON feature type"
},
"geometry": {
"type": "object",
"description": "Geographic coordinates within region"
},
"properties": {
"type": "object",
"description": "Environmental parameters for region cell"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nasa-power": {
"url": "https://gateway.pipeworx.io/nasa-power/mcp"
}
}
}
See Getting Started for client-specific install steps.