climatology
Pack: nasa-power · Endpoint: https://gateway.pipeworx.io/nasa-power/mcp
Long-term monthly climatology averages for a coordinate.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | |
longitude | number | yes | |
parameters | string | no | |
community | string | no |
Example call
Arguments
{
"latitude": 40.7128,
"longitude": -74.006
}
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":"climatology","arguments":{"latitude":40.7128,"longitude":-74.006}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('climatology', {
"latitude": 40.7128,
"longitude": -74.006
});
More examples
{
"latitude": -33.8688,
"longitude": 151.2093,
"community": "AG",
"parameters": "T2M,T2M_MAX,T2M_MIN,PRECTOTCORR"
}
Response shape
| Field | Type | Description |
|---|---|---|
properties | object | Metadata about the climatology request |
header | object | Header information with temporal and geographic details |
geometry | object | Geographic geometry of the point |
features | array | Array of monthly climatology records |
Full JSON Schema
{
"type": "object",
"description": "Long-term monthly climatology averages from NASA POWER API",
"properties": {
"properties": {
"type": "object",
"description": "Metadata about the climatology request"
},
"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 monthly climatology records",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "GeoJSON feature type"
},
"geometry": {
"type": "object",
"description": "Geographic coordinates"
},
"properties": {
"type": "object",
"description": "Monthly average environmental parameters"
}
}
}
}
}
}
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.