Skip to content
VS Code

dokploy mcp server for VS Code

io.github.jordanburke/dokploy-mcp-server

Dokploy MCP server: manage apps, Docker Compose, databases, domains, backups, and servers.

client:VS Code transport:stdio runtime:npm

Install dokploy mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dokploy-url",
      "description": "DOKPLOY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dokploy-api-key",
      "description": "DOKPLOY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "transport-type",
      "description": "TRANSPORT_TYPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "host",
      "description": "HOST",
      "password": true
    }
  ],
  "servers": {
    "dokploy-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "dokploy-mcp-server"
      ],
      "env": {
        "DOKPLOY_URL": "${input:dokploy-url}",
        "DOKPLOY_API_KEY": "${input:dokploy-api-key}",
        "TRANSPORT_TYPE": "${input:transport-type}",
        "PORT": "${input:port}",
        "HOST": "${input:host}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

dokploy mcp server in other clients