point_data
Pack: nasa-power · Endpoint: https://gateway.pipeworx.io/nasa-power/mcp
Time-series observations for a single coordinate. Temporal granularity controlled by the dates supplied — both must be YYYYMMDD; use daily by default.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | Latitude in degrees (-90 to 90) |
longitude | number | yes | Longitude in degrees (-180 to 180) |
start | string | yes | Start date YYYYMMDD |
end | string | yes | End date YYYYMMDD |
parameters | string | no | Comma-separated POWER parameter codes (default T2M,T2M_MAX,T2M_MIN,PRECTOTCORR,ALLSKY_SFC_SW_DWN,RH2M,WS10M) |
community | string | no | AG (agriculture, default) | RE (renewable energy) | SB (sustainable buildings) |
temporal | string | no | hourly | daily (default) | monthly |
Example call
Arguments
{
"latitude": 40.7128,
"longitude": -74.006,
"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":"point_data","arguments":{"latitude":40.7128,"longitude":-74.006,"start":"20230101","end":"20231231"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('point_data', {
"latitude": 40.7128,
"longitude": -74.006,
"start": "20230101",
"end": "20231231"
});
More examples
{
"latitude": 35.6762,
"longitude": 139.6503,
"start": "20230601",
"end": "20230630",
"parameters": "T2M,PRECTOTCORR,ALLSKY_SFC_SW_DWN",
"community": "RE",
"temporal": "hourly"
}
Response shape
| Field | Type | Description |
|---|---|---|
properties | object | Metadata about the request and data |
header | object | Header information with temporal and geographic details |
geometry | object | Geographic geometry of the point |
features | array | Array of time-series data records |
Full JSON Schema
{
"type": "object",
"description": "Time-series observations for a single coordinate from NASA POWER API",
"properties": {
"properties": {
"type": "object",
"description": "Metadata about the request and data"
},
"header": {
"type": "object",
"description": "Header information with temporal and geographic details"
},
"geometry": {
"type": "object",
"description": "Geographic geometry of the point"
},
"features": {
"type": "array",
"description": "Array of time-series data records",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "GeoJSON feature type"
},
"geometry": {
"type": "object",
"description": "Geographic coordinates"
},
"properties": {
"type": "object",
"description": "Environmental parameters and observations"
}
}
}
}
}
}
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.