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

NameTypeRequiredDescription
latitudenumberyesLatitude in degrees (-90 to 90)
longitudenumberyesLongitude in degrees (-180 to 180)
startstringyesStart date YYYYMMDD
endstringyesEnd date YYYYMMDD
parametersstringnoComma-separated POWER parameter codes (default T2M,T2M_MAX,T2M_MIN,PRECTOTCORR,ALLSKY_SFC_SW_DWN,RH2M,WS10M)
communitystringnoAG (agriculture, default) | RE (renewable energy) | SB (sustainable buildings)
temporalstringnohourly | 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

FieldTypeDescription
propertiesobjectMetadata about the request and data
headerobjectHeader information with temporal and geographic details
geometryobjectGeographic geometry of the point
featuresarrayArray 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.

Regenerated from source · build July 6, 2026