Release v0.4.2
Changelog
Bug Fixes
- bb30c09 fix(ci): bump golang.org/x/net to v0.55.0 and gate release on Trivy
- a45fe35 fix(release): shorten MCP registry description to <=100 chars
Installation
Linux/macOS
# Pick the asset for your platform (linux/darwin, amd64/arm64)
curl -L -o dokku-mcp https://github.com/dokku-MCP/dokku-mcp/releases/download/v0.4.2/dokku-mcp-linux-amd64
chmod +x dokku-mcp
sudo mv dokku-mcp /usr/local/bin/Verify installation
dokku-mcp --versionConfiguration
After installing the binary, configure it to connect to your Dokku instance
using a YAML file or environment variables.
Using a Configuration File
Create a configuration file at one of the following locations:
- System-wide:
/etc/dokku-mcp/config.yaml - User-specific:
~/.dokku-mcp/config.yaml
Minimal example:
# ~/.dokku-mcp/config.yaml
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 the full list of options, see config.yaml.example.
Using Environment Variables
All options can be set with the DOKKU_MCP_ prefix:
export DOKKU_MCP_SSH_HOST="your-dokku-host.com"
export DOKKU_MCP_SSH_USER="dokku"
export DOKKU_MCP_LOG_LEVEL="debug"
dokku-mcp