MCP Hub
Back to servers

opendock

Requires Setup

Official MCP for the Opendock Neutron API.

Stars
2
Updated
Feb 15, 2026
Validated
Feb 26, 2026

Quick Install

npx -y opendock-mcp

Opendock MCP Server

npm version

An MCP server that connects AI assistants (Claude, etc.) to the Opendock Neutron API for warehouse dock scheduling.

Install

No clone or build needed — just use npx:

npx -y opendock-mcp

Or install globally:

npm install -g opendock-mcp

Tools

17 tools across 6 categories:

CategoryTools
Authget_profile
Warehouseslist_warehouses, get_warehouse, get_warehouse_hours
Dockslist_docks, get_dock
Load Typeslist_load_types, get_load_type, get_load_type_availability
Appointmentslist_appointments, search_appointments, get_appointment, create_appointment, update_appointment, delete_appointment
Carrierslist_carriers, get_carrier

Prerequisites

  • Node.js 18+
  • An Opendock account with API access

Authentication

The server supports two authentication methods:

Option 1: Username/password (recommended) — the server handles login and token refresh automatically.

OPENDOCK_USERNAME=user@example.com
OPENDOCK_PASSWORD=your-password

Option 2: Pre-existing JWT token

OPENDOCK_TOKEN=your-jwt-token

Optionally set the API URL (defaults to https://neutron.opendock.com):

OPENDOCK_API_URL=https://neutron.opendock.com

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "opendock": {
      "command": "npx",
      "args": ["-y", "opendock-mcp"],
      "env": {
        "OPENDOCK_USERNAME": "user@example.com",
        "OPENDOCK_PASSWORD": "your-password"
      }
    }
  }
}

Usage with Claude Code

claude mcp add opendock -- npx -y opendock-mcp

Set the required environment variables before launching Claude Code, or pass them in the MCP config.

Testing

Use the MCP Inspector to test interactively:

OPENDOCK_USERNAME=user@example.com OPENDOCK_PASSWORD=your-password \
  npx @modelcontextprotocol/inspector npx -y opendock-mcp

Development

git clone https://github.com/Pollamin/opendock-mcp.git
cd opendock-mcp
npm install
npm run build

License

MIT

Reviews

No reviews yet

Sign in to write a review