A straightforward wrapper around Open-Meteo's free marine API. No authentication required, which keeps setup simple. Part of the broader Pipeworx gateway that bundles 673+ data sources behind a single MCP endpoint. The documentation doesn't list specific tools, but Open-Meteo typically provides marine forecasts, wave heights, ocean currents, and sea temperatures. You can either connect to this standalone marine endpoint or use the full Pipeworx gateway and ask questions in plain English. The gateway routes your request to the right underlying API. Useful when you need ocean or coastal weather data in your AI workflows without managing API keys.
Marine MCP — wraps marine-api.open-meteo.com (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"marine": {
"url": "https://gateway.pipeworx.io/marine/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 Marine data" })
The gateway picks the right tool and fills the arguments automatically.
MIT