Model Context Protocol (MCP) server for Dokku, written in Go.
Version: v0.2.0
This server exposes Dokku's management capabilities through the standardized Model Context Protocol (MCP), allowing Large Language Models (LLMs) to interact with and manage a Dokku instance.
Follow Installation or grab a prebuilt binary to get started in minutes with cursor, claude-code, goose and all agentic tools which support mcp.
Or make start if you already have go locally.
For a quick tour of the server without wiring up a full MCP client, use the dedicated make target:
make inspectIt builds the binary (if needed), launches the MCP Inspector CLI, and connects it to the server in stdio mode. Inspector prints a local URLβopen it in your browser to browse resources, prompts, and tools, or to issue ad-hoc calls. This is a great way to validate your setup before wiring Dokku MCP into Cursor, Claude, other IDE or internal tools.
The server can be used with any MCP-compatible client.
Add the following to your zed, .cursor/mcp.json, windsurf, claude_desktop_config.json or .mcp.json:
{
"mcpServers": {
"dokku": {
"command": "/home/user/dokku-mcp/build/dokku-mcp",
"args": [],
"env": {
"DOKKU_MCP_SECURITY_BLACKLIST": "destroy,uninstall,remove",
"DOKKU_MCP_SSH_HOST": "127.0.0.1",
"DOKKU_MCP_SSH_KEY_PATH": "/home/user/.ssh/id_rsa",
"DOKKU_MCP_SSH_PORT": "22",
"DOKKU_MCP_SSH_USER": "dokku"
}
}
}
}Remember to replace the command path with the absolute path to the binary.
- Core: server info and plugin list resources; optional server logs tool.
- Apps: create, deploy (Git URL + ref), scale, env config, status; app list resource; troubleshooting prompt.
- Deployments: async deploys with IDs and background status.
Submit an issue for re-priorizing proposal
- Build-level log: expose build output for deploy invocations.
- App-level log: expose runtime logs.
- Inter-plugin communication: allow inter-plugin events management, Eventbus maybe Watermill.
- User management: ssh-keys:add, boundaries and prompting.
- Service plugins: service templating, postgresql first implementation.
- SSH transactions / long-running connections: streaming logs and interactive operations.
- Enforce allow-list: enforce least-principles with explicit allow-list over block-list.
- Implemented:
apps:list,apps:info,apps:create,apps:destroy,apps:exists,apps:report,config:show,config:set,ps:scale,ps:report,logs,plugin:list,plugin:install,plugin:uninstall,plugin:enable,plugin:disable,plugin:update,version,proxy:report,proxy:set,scheduler:report,scheduler:set,git:report,git:set,ssh-keys:list,ssh-keys:remove,registry:logout,logs:set. - Missing/partial:
ssh-keys:add,registry:login/registry listing, configuration key enumeration, Services plugin, SSL plugin, streaming/attach sessions.
Open an issue or read Contributing.
Need help with the dokku-mcp project? Goose AI is available to assist you! Simply tag your GitHub issues or pull requests with the :goose label, and Goose AI will automatically be notified to help with development, debugging, feature implementation, and other project-related tasks.
Example of Goose AI in action Another example
- Installation
- Configuration
- Local Dokku Development
- Connecting MCP Clients
- Development
- Architecture
- Project Structure
- Contributing
- License
Download the latest release for your platform:
# Linux (amd64 / arm64 / arm)
curl -L -o dokku-mcp https://github.com/dokku-mcp/dokku-mcp/releases/download/v0.2.0/dokku-mcp-linux-amd64
chmod +x dokku-mcp
sudo mv dokku-mcp /usr/local/bin/
# macOS (amd64 / arm64)
curl -L -o dokku-mcp https://github.com/dokku-mcp/dokku-mcp/releases/download/v0.2.0/dokku-mcp-darwin-amd64
chmod +x dokku-mcp
sudo mv dokku-mcp /usr/local/bin/dokku-mcp --versionIf you prefer to build from source:
-
Prerequisites:
- Go (version 1.24 or later)
-
Clone and build:
git clone https://github.com/dokku-mcp/dokku-mcp.git cd dokku-mcp make build
The server can be configured in two ways: using a config.yaml file or via environment variables.
Create a configuration file at one of the following locations:
- System-wide:
/etc/dokku-mcp/config.yaml - User-specific:
~/.dokku-mcp/config.yaml - Local:
config.yamlin the same directory as the binary.
Here is a minimal config.yaml example:
ssh:
host: "your-dokku-host.com"
user: "dokku"
# key_path: "/path/to/your/ssh/private/key" # Optional, uses ssh-agent if empty
log_level: "info"For a full list of available options, please refer to the config.yaml.example file.
All configuration settings can be overridden with environment variables prefixed with DOKKU_MCP_. For example:
export DOKKU_MCP_SSH_HOST="your-dokku-host.com"
export DOKKU_MCP_SSH_USER="dokku"
export DOKKU_MCP_LOG_LEVEL="debug"Once configured, you can run the server:
dokku-mcpThe server will start and be ready to accept connections from an MCP client.
For development and testing without needing a remote Dokku instance, you can run a local Dokku server using Docker.
Prerequisites:
-
Set up the local Dokku container:
This command will download the necessary Docker images and configure the local Dokku instance. It only needs to be run once.
make setup-dokku make dokku-start
-
Stop the local Dokku container:
make dokku-stop
When the local Dokku container is running, the MCP server (with default config) should be able to connect to it. You can run integration tests against this local instance.
The server supports two transport modes for clients:
stdio(default): Standard input/output for direct process communication.sse(Server-Sent Events): HTTP-based transport for web clients.DOKKU_MCP_TRANSPORT_TYPE=sse dokku-mcp
This section is for developers who want to contribute to the project or modify the source code.
-
Prerequisites:
-
Clone the repository:
git clone https://github.com/dokku-mcp/dokku-mcp.git cd dokku-mcp -
Install development tools:
This command installs all the necessary Go tools for development, linting, and testing.
make install-tools
-
Set up the development environment:
This command sets up Git hooks to ensure code quality before commits.
make setup-dev
-
Build and run from source:
# This command builds the binary and starts the server. make start
The project uses a Makefile to automate common tasks.
make help: Show all available commands.make check: Run all code quality checks (linting, formatting, complexity).make build: Build the server binary.make clean: Clean up build artifacts.
-
Run all tests:
make testThis runs all unit and integration tests and generates an HTML coverage report at
coverage.html. -
Run integration tests against local Dokku: Make sure your local Dokku container is running (
make dokku-start).make test-integration-local
The server follows Domain-Driven Design (DDD) principles, with a clear separation between:
- Domain Layer (
internal/domain): Core business logic, entities, and repository interfaces. - Application Layer (
internal/application): Use case orchestration and coordination. - Infrastructure Layer (
internal/infrastructure): Implementations of interfaces, such as the Dokku client, databases, and external services.
It features a plugin-based architecture located in internal/server-plugins, where each plugin encapsulates a specific set of Dokku features (e.g., app, core, deployment).
For more details, please refer to the documentation in the docs/ directory.
dokku-mcp/
βββ cmd/ # Entry points for the application
β βββ server/ # Server main command
βββ internal/ # Private application code
β βββ server/ # MCP server and adapter
β βββ server-plugin/ # Plugin system infrastructure
β βββ server-plugins/ # Actual plugin implementations (app, core, etc.)
β βββ dokku-api/ # Dokku CLI client and API
β βββ shared/ # Shared domain types and services
βββ pkg/ # Reusable packages (config, logger, etc.)
βββ docs/ # Project documentation
βββ scripts/ # Helper scripts
Contributions are welcome! Please see Contributing for detailed guidance on how to contribute.
This project is under the Apache License 2.0 - see the LICENSE file for details.
Copyright [Alex Galey]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.