marine

Pack: weatherapi · Endpoint: https://gateway.pipeworx.io/weatherapi/mcp

Get marine/ocean conditions forecast for a coastal location: significant wave height, swell height, water temperature, and wind. Up to 7 days, sampled every 6 hours. Example: marine({ q: “33.7,-118.4”, days: 2 }).

Parameters

NameTypeRequiredDescription
qstringyes
daysnumbernoNumber of marine forecast days (default 1, max 7).

Example call

Arguments

{
  "q": "33.7,-118.4",
  "days": 2
}

curl

curl -X POST https://gateway.pipeworx.io/weatherapi/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"marine","arguments":{"q":"33.7,-118.4","days":2}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('marine', {
  "q": "33.7,-118.4",
  "days": 2
});

Connect

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

{
  "mcpServers": {
    "weatherapi": {
      "url": "https://gateway.pipeworx.io/weatherapi/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026