Connects Claude to Pirate Weather, a Dark Sky compatible forecast API. Exposes two tools: forecast for full weather data at a specific location, and forecast_grid for raw GFS/ECMWF model data. Routes through Pipeworx's gateway, which means you can either use this standalone or get it as part of their 250+ data source bundle. Supports their ask_pipeworx wrapper if you'd rather ask questions in natural language instead of calling tools directly. You'll need a free Pirate Weather API key. Reach for this when you need weather data in your Claude workflows without dealing with commercial API restrictions.
Pirate Weather MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
forecast | Full forecast at point. |
forecast_grid | GFS/ECMWF grid forecast. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pirate-weather": {
"url": "https://gateway.pipeworx.io/pirate-weather/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 Pirate Weather data" })
The gateway picks the right tool and fills the arguments automatically.
MIT