Dokku Mcp Server
@dokku-MCP
About Dokku Mcp Server
Dokku modular mcp server in go - fx & mcp-go
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"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"
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Dokku MCP Server?
Dokku MCP Server is a Model Context Protocol (MCP) server written in Go that exposes Dokku’s management capabilities to Large Language Models (LLMs). It allows AI assistants to interact with and manage a Dokku instance programmatically.
How to use Dokku MCP Server?
Download the prebuilt binary or build from source, configure SSH access to your Dokku host via a YAML file or environment variables, then add the server’s command to your MCP client configuration (e.g., .cursor/mcp.json or claude_desktop_config.json). Run dokku-mcp to start the server, or use make inspect for a quick MCP Inspector playground.
Key features of Dokku MCP Server
- MCP-compatible interface for Dokku management
- Implemented commands for apps, config, deployments, plugins, proxies, SSH keys, and more
- Supports async deployments with IDs and background status
- Plugin-based architecture following Domain-Driven Design
- Transport modes: stdio (default) and SSE (HTTP-based)
- Security via blacklist environment variable
DOKKU_MCP_SECURITY_BLACKLIST - Configuration via YAML file or environment variables (prefix
DOKKU_MCP_)
Use cases of Dokku MCP Server
- Let an AI assistant create, deploy, and scale Dokku apps
- Automate environment variable configuration and troubleshooting
- Manage plugins (list, install, uninstall, enable, disable, update)
- Retrieve server info, app lists, and deployment logs
- Integrate Dokku into MCP-supporting IDEs like Cursor, Claude Code, or Goose
FAQ from Dokku MCP Server
What prerequisites are needed to use Dokku MCP Server?
You need a running Dokku instance and SSH access to it (e.g., SSH host, port, user, and key). For building from source, Go 1.25 or later is required.
Can I run a local Dokku instance for development?
Yes, the project provides a Docker-based setup: run make setup-dokku and make dokku-start to spin up a local Dokku container for testing.
What Dokku commands are currently implemented?
The server supports a wide range: apps:create, apps:destroy, apps:info, apps:list, config:show, config:set, ps:scale, logs, plugin:*, ssh-keys:list, registry:logout, and many more. Some commands like ssh-keys:add and registry:login are marked as missing/partial.
Is this project ready for production use?
No, it is in early development (v0.3.0). Breaking changes are expected, and it is not recommended for production use.
What transport modes does the server support?
It supports stdio (default, for direct process communication) and sse (Server-Sent Events, for HTTP-based web clients). CORS configuration options are available for SSE mode.
More Other MCP servers
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Awesome Mlops
visengerA curated list of references for MLOps

EverArt
modelcontextprotocolModel Context Protocol Servers
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Comments