Global Fishing Watch MCP Server
Enables LLMs to query Global Fishing Watch data for vessel tracking, fishing activity, dark-vessel detections, and IUU-risk indicators through structured, summarized API responses. It handles API quirks and returns context-sized summaries with data caveats.
README
Global Fishing Watch MCP Server
WORK IN PROGESS - NOT READY FOR PRODUCTION
An MCP server for the Global Fishing Watch API. It gives LLMs structured, summarized access to vessel tracking, fishing activity, dark-vessel (SAR) detection, and IUU-risk data — not raw API dumps.
No serious standalone GFW MCP server existed as of mid-2026. Other MCP servers in this space (e.g. cyanheads's work) cover clean REST/JSON APIs well but don't touch datasets that need real processing. This server's whole point is the processing layer: aggregation, summarization, and interpretation happen in code before anything reaches the model.
Example
"Is there fishing activity in Palau's EEZ in the last 90 days, and does it look suspicious?"
The model chains three tools automatically: find_region resolves "Palau" to GFW's EEZ ID, get_fishing_activity returns a summarized breakdown (total hours, top flag states, top gear types) instead of a raw grid of lat/lon cells, and get_vessel_insights surfaces GFW's own IUU-risk indicators for any vessels of interest — each response carrying explicit data caveats (AIS-only, near-port overestimation, satellite-pass-dependent coverage) so the model doesn't overstate what the data shows.
Install
Claude Desktop / Claude Code — add to your MCP config:
{
"mcpServers": {
"gfw": {
"command": "npx",
"args": ["-y", "gfw-mcp-server"],
"env": {
"GFW_API_TOKEN": "your-token-here"
}
}
}
}
Manual / other clients:
npm install -g gfw-mcp-server
GFW_API_TOKEN=your-token-here gfw-mcp-server
Or run over Streamable HTTP instead of STDIO:
GFW_API_TOKEN=your-token-here gfw-mcp-server --http --port 3000
Getting a GFW API token
- Register for a Global Fishing Watch account
- Create an API access token
- GFW's API is free for non-commercial/research use — see their terms
Tools
| Tool | What it does |
|---|---|
find_vessels |
Search vessels by name, MMSI, IMO, or callsign. Returns one row per distinct vessel identity, not one per historical AIS record. |
find_region |
Resolve a country/EEZ name (e.g. "Palau", "the Russian EEZ") to the region ID other tools need. |
get_fishing_activity |
AIS-based apparent fishing effort for a region and date range, summarized by flag/gear type. |
get_dark_vessel_detections |
SAR (satellite radar) vessel detections — includes vessels not broadcasting AIS. Matched/unmatched breakdown. |
get_vessel_presence |
General AIS vessel traffic for a region — cargo, carrier, and other non-fishing vessel movement. |
get_vessel_events |
A vessel's fishing/encounter/loitering/port-visit/AIS-gap history, summarized (event counts, distinct ports, longest AIS-off gap). |
get_vessel_insights |
GFW's own IUU-risk indicators for a vessel — no-take MPA fishing, unauthorized-area fishing, AIS-off patterns, RFMO IUU-list membership. |
list_reference_data |
Static lookup: supported gear types and vessel types. (EEZ region names are resolved separately, at runtime, by find_region.) |
Full architecture and design rationale: docs/claude/architecture.md.
Data caveats & attribution
This server surfaces Global Fishing Watch data and is required by GFW's terms of use to attribute them in anything built on their API — this project is built on Global Fishing Watch data (globalfishingwatch.org) and is not affiliated with or endorsed by GFW.
A few things worth knowing before trusting what comes back:
- AIS-based datasets (fishing effort, vessel presence, most events) only see vessels broadcasting AIS. Vessels that go dark won't appear — that's what
get_dark_vessel_detections(SAR-based) is for. - Fishing effort near ports is often overestimated — GFW's own map interface applies a 3km buffer by default for this reason.
- SAR coverage is satellite-pass-dependent, not continuous.
get_vessel_eventsis not a continuous track. GFW's API doesn't expose raw vessel positions — only discrete events (fishing, encounters, port visits, etc.).
Every tool response includes a dataCaveats field with the specific caveats relevant to that response — read it before drawing conclusions from the data.
Why not just call the REST API directly?
You can — GFW's API is well-documented and there are official Python and R clients. This server exists for the cases where you want an LLM reasoning over the data conversationally: it handles GFW's quirks (the single-concurrent-report limit, 524 timeouts, the 366-day report window, vessel identity fragmentation across AIS records) so the model doesn't have to, and returns summaries sized for a context window instead of raw grid-cell arrays meant for a map renderer.
Contributing
See .CLAUDE.md and docs/claude/ for conventions and architecture. In particular: gear-type and vessel-type reference data is sourced from live GFW dataset metadata, not hand-transcribed (see docs/claude/architecture.md); EEZ region lookup is resolved at runtime by find_region, not a bundled table — see the same doc's Cache layer section.
License
MIT for this codebase. Use of the Global Fishing Watch API itself is governed separately by GFW's terms of use — non-commercial/research use only, with mandatory attribution.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.