MCP MCP Server

Multi-instance Dokploy API proxy MCP - single tool, skill-driven, 445 endpoints

Local serverstdioGo

What is the MCP MCP server?

Multi-instance Dokploy API proxy MCP - single tool, skill-driven, 445 endpoints. That is what the mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Multi-instance Dokploy API proxy MCP. 1 tool, ~200 tokens instead of 67+ tools consuming ~35,000 tokens per conversation. Supports multiple Dokploy instances via config file.

Getting it running

Installation goes through your MCP client rather than a global install: point it at mcp-dokploy-fullapi-proxy on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • Cursor — The Cursor tool exposed by this server
  • Windsurf — The Windsurf tool exposed by this server
  • Cline — Add MCP via Cline -> MCP Servers -> Edit. Paste SKILL.md into .clinerules

What it needs from you

Configuration is passed through the environment: DOKPLOY_URL, DOKPLOY_TOKEN, DOKPLOY_SRV01_URL, DOKPLOY_SRV01_TOKEN, DOKPLOY_HSH_URL, DOKPLOY_HSH_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP's toolset — Cursor, Windsurf, Cline — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
CursorThe Cursor tool exposed by this server.
WindsurfThe Windsurf tool exposed by this server.
ClineAdd MCP via Cline -> MCP Servers -> Edit. Paste SKILL.md into .clinerules.

How to install the MCP MCP server

**With env vars (single instance):**
```json
{
  "mcpServers": {
    "dokploy-fullapi-proxy": {
      "command": "npx",
      "args": ["-y", "mcp-dokploy-fullapi-proxy"],
      "env": {
        "DOKPLOY_URL": "https://your-dokploy-instance.com/api",
        "DOKPLOY_TOKEN": "your-api-token"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DOKPLOY_URLEndpoint or connection string the server talks to.Yes
DOKPLOY_TOKENCredential the server authenticates with.Yes
DOKPLOY_SRV01_URLEndpoint or connection string the server talks to.Yes
DOKPLOY_SRV01_TOKENCredential the server authenticates with.Yes
DOKPLOY_HSH_URLEndpoint or connection string the server talks to.Yes
DOKPLOY_HSH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP to Cursor.
  • Use MCP to Windsurf.
  • Use MCP to Cline.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Cursor, Windsurf, Cline) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.