gfwfish_4wings_report

Pack: global-fishing-watch · Endpoint: https://gateway.pipeworx.io/global-fishing-watch/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/gfwfish_4wings_report for the schema, then POST the same URL with its arguments for the data.

Aggregate apparent fishing effort (hours) from Global Fishing Watch over a bounding box and date range, grouped by flag state, gear type or vessel. This is the AIS-derived fishing-pressure layer behind the GFW map — use it for “how much fishing happened in this area, by whose fleet”. Requires your own free GFW API token, passed as _apiKey.

Parameters

NameTypeRequiredDescription
bboxstringyesBounding box as “minLon,minLat,maxLon,maxLat” in WGS84, e.g. “-80,-10,-70,0”.
start_datestringyesStart date, YYYY-MM-DD.
end_datestringyesEnd date, YYYY-MM-DD.
group_bystringnoOne of “FLAG”, “GEARTYPE”, “VESSEL_ID”, “FLAGANDGEARTYPE”. Default “FLAG”.
temporal_resolutionstringnoOne of “HOURLY”, “DAILY”, “MONTHLY”, “YEARLY”, “ENTIRE”. Default “ENTIRE”.
spatial_resolutionstringnoOne of “LOW” (0.1 degree) or “HIGH” (0.01 degree). Default “LOW”.
datasetsstringnoComma-separated GFW effort datasets. Default “public-global-fishing-effort:latest”.
_apiKeystringnoYour own Global Fishing Watch API token (BYO). ${KEY_HELP}

Example call

Arguments

{
  "bbox": "-80,-10,-70,0",
  "start_date": "2023-01-01",
  "end_date": "2023-12-31",
  "group_by": "FLAG"
}

curl

curl -X POST https://gateway.pipeworx.io/global-fishing-watch/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gfwfish_4wings_report","arguments":{"bbox":"-80,-10,-70,0","start_date":"2023-01-01","end_date":"2023-12-31","group_by":"FLAG"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gfwfish_4wings_report', {
  "bbox": "-80,-10,-70,0",
  "start_date": "2023-01-01",
  "end_date": "2023-12-31",
  "group_by": "FLAG"
});

Connect

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

{
  "mcpServers": {
    "global-fishing-watch": {
      "url": "https://gateway.pipeworx.io/global-fishing-watch/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026