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

NameTypeRequiredDescription
latitude_minnumberyes
latitude_maxnumberyes
longitude_minnumberyes
longitude_maxnumberyes
startstringyesYYYYMMDD
endstringyesYYYYMMDD
parametersstringno
communitystringno
temporalstringnodaily (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

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

Regenerated from source · build July 6, 2026