MCP Hub
Back to servers

vesselapi-mcp

MCP server for the VesselAPI — maritime vessel tracking, port events, emissions, and navigation data

Updated
Feb 25, 2026

Quick Install

npx -y vesselapi-mcp

VesselAPI MCP Server

CI npm Node License: MIT

An MCP (Model Context Protocol) server that exposes maritime data from the VesselAPI to AI assistants like Claude Desktop, Cursor, Windsurf, and Claude Code.

Prerequisites

  1. Sign up at dashboard.vesselapi.com
  2. Create an API token in your dashboard
  3. Use the token as VESSELAPI_API_KEY in the configuration below

Resources: Documentation | API Explorer | Dashboard | Contact Support

Features

  • 16 tools covering vessels, ports, location search, and maritime safety
  • Vessel search, positions, ETA, classification, ownership, emissions, inspections, and casualties
  • Port search, details, and port events (arrivals/departures)
  • Geographic vessel search (bounding box and radius)
  • NAVTEX maritime safety messages
  • Manual pagination to control API quota usage

Quick Start

No installation required — just configure your AI client with npx:

{
  "mcpServers": {
    "vesselapi": {
      "command": "npx",
      "args": ["-y", "vesselapi-mcp"],
      "env": {
        "VESSELAPI_API_KEY": "your-api-key"
      }
    }
  }
}

Configuration

Add the JSON above to the config file for your client:

ClientConfig file
Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Cursor.cursor/mcp.json or ~/.cursor/mcp.json
Claude Code.claude/settings.json or ~/.claude/settings.json
Windsurf~/.codeium/windsurf/mcp_config.json

Tools

Vessel Tools

ToolDescription
search_vesselsSearch vessels by name, IMO, MMSI, flag, type, or callsign
get_vesselGet detailed vessel information
get_vessel_positionGet current vessel position (lat/lon, speed, heading)
get_vessel_etaGet vessel estimated time of arrival
get_vessel_classificationGet classification details (class society, surveys, hull)
get_vessel_ownershipGet ownership details (owner, manager, operator)
get_vessel_emissionsGet emissions data (CO2, fuel consumption)
get_vessel_inspectionsGet port state control inspections
get_vessel_casualtiesGet marine casualty records

Port Tools

ToolDescription
search_portsSearch ports by name, country, type, or region
get_portGet port details by UN/LOCODE
get_port_eventsGet arrivals/departures for a port
get_port_events_by_vesselGet port events for a vessel

Location Tools

ToolDescription
get_vessels_in_areaFind vessels in a bounding box
get_vessels_in_radiusFind vessels within a radius of a point

Safety Tools

ToolDescription
get_navtex_messagesGet NAVTEX maritime safety messages

Pagination

All list endpoints support limit and nextToken parameters for manual pagination. When more results exist, the response includes a nextToken — pass it in the next call to get the next page.

Development

git clone https://github.com/vessel-api/vesselapi-mcp.git
cd vesselapi-mcp
npm install
npm run build
npm run build        # Build the server
npm run typecheck    # Type-check without emitting
npm run clean        # Remove build artifacts

Testing with MCP Inspector

VESSELAPI_API_KEY=your-key npx @modelcontextprotocol/inspector node dist/index.js

License

MIT

Reviews

No reviews yet

Sign in to write a review