marine

Pack: open-meteo · Endpoint: https://gateway.pipeworx.io/open-meteo/mcp

“Wave / swell / surf forecast for [beach]” / “sea conditions in [bay]” / “wave height at [coordinates]” / “is it safe to sail” — global marine weather forecast (wave height, wave period, wave direction, wind waves, swell waves) at any ocean lat/lng. Free, keyless. Use for surf reports, sailing prep, fishing conditions, coastal planning.

Parameters

NameTypeRequiredDescription
latitudenumberyes
longitudenumberyes
hourlystringnoDefault wave_height,wave_period,wind_wave_height
forecast_daysnumberno

Example call

Arguments

{
  "latitude": 37.7749,
  "longitude": -122.4194
}

curl

curl -X POST https://gateway.pipeworx.io/open-meteo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"marine","arguments":{"latitude":37.7749,"longitude":-122.4194}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('marine', {
  "latitude": 37.7749,
  "longitude": -122.4194
});

More examples

{
  "latitude": -33.8688,
  "longitude": 151.2093,
  "forecast_days": 5
}

Response shape

FieldTypeDescription
latitudenumberQuery latitude
longitudenumberQuery longitude
generationtime_msnumberAPI response generation time in milliseconds
utc_offset_secondsintegerUTC offset in seconds
timezonestringIANA timezone string
elevationnumberElevation of the location in meters
hourly_unitsobjectUnits for hourly marine variables
hourlyobjectHourly marine forecast data
Full JSON Schema
{
  "type": "object",
  "properties": {
    "latitude": {
      "type": "number",
      "description": "Query latitude"
    },
    "longitude": {
      "type": "number",
      "description": "Query longitude"
    },
    "generationtime_ms": {
      "type": "number",
      "description": "API response generation time in milliseconds"
    },
    "utc_offset_seconds": {
      "type": "integer",
      "description": "UTC offset in seconds"
    },
    "timezone": {
      "type": "string",
      "description": "IANA timezone string"
    },
    "elevation": {
      "type": "number",
      "description": "Elevation of the location in meters"
    },
    "hourly_units": {
      "type": "object",
      "description": "Units for hourly marine variables",
      "additionalProperties": {
        "type": "string"
      }
    },
    "hourly": {
      "type": "object",
      "description": "Hourly marine forecast data",
      "properties": {
        "time": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "ISO 8601 timestamps"
        }
      },
      "additionalProperties": {
        "type": "array",
        "items": {
          "type": [
            "number",
            "null"
          ]
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "open-meteo": {
      "url": "https://gateway.pipeworx.io/open-meteo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026