Description

A Python client for interacting with the Marlo MCP (Model Context Protocol) server. This package provides an async client for making authenticated requests to the MCP API and includes example tools for vessel data retrieval.

Installation

npx -y marlo-mcp
npm install marlo-mcp
git clone https://github.com/core-marlo/marlo-mcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "marlo": {
      "command": "npx",
      "args": [
        "-y",
        "marlo-mcp"
      ]
    }
  }
}