Connects Claude to NASA's POWER API for long-term climate and energy resource data. Right now it exposes one tool: climatology queries that pull monthly averages for any coordinate. Useful when you're building energy models, planning solar installations, or need historical weather patterns without setting up your own NASA API integration. Part of the Pipeworx gateway, so you can either use this standalone or get it bundled with 600+ other data sources. Supports plain English queries through ask_pipeworx if you don't want to wrangle parameters yourself. Runs over streamable HTTP, works with Claude Desktop and similar clients.
NASA POWER MCP — Prediction of Worldwide Energy Resources
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
climatology | Long-term monthly climatology averages for a coordinate. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nasa-power": {
"url": "https://gateway.pipeworx.io/nasa-power/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Nasa Power data" })
The gateway picks the right tool and fills the arguments automatically.
MIT