
Product
Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.
@dokploy/mcp
Advanced tools
Dokploy MCP Server exposes all Dokploy API endpoints as tools consumable via the Model Context Protocol (MCP). It allows MCP-compatible clients (e.g., AI models, other applications) to interact with your Dokploy server programmatically.
With 508 tools across 49 categories, this server provides complete coverage of the Dokploy API — from project and application management to databases, notifications, SSO, Docker, backups, and more.
Go to: Settings -> Cursor Settings -> MCP -> Add new global MCP server
Add this to your Cursor ~/.cursor/mcp.json file. You may also install in a specific project by creating .cursor/mcp.json in your project folder. See Cursor MCP docs for more info.
{
"mcpServers": {
"dokploy-mcp": {
"command": "npx",
"args": ["-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
{
"mcpServers": {
"dokploy-mcp": {
"command": "bunx",
"args": ["-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
{
"mcpServers": {
"dokploy-mcp": {
"command": "deno",
"args": ["run", "--allow-env", "--allow-net", "npm:@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
Add this to your Windsurf MCP config file. See Windsurf MCP docs for more info.
{
"mcpServers": {
"dokploy-mcp": {
"command": "npx",
"args": ["-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
Add this to your VS Code MCP config file. See VS Code MCP docs for more info.
{
"servers": {
"dokploy-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
Add the MCP server to Claude Code using the CLI:
claude mcp add dokploy-mcp -- npx -y @dokploy/mcp
Then set the environment variables in your .claude/settings.json or pass them inline:
DOKPLOY_URL=https://your-dokploy-server.com DOKPLOY_API_KEY=your-token claude
Add this to your Zed settings.json. See Zed Context Server docs for more info.
{
"context_servers": {
"dokploy-mcp": {
"command": "npx",
"args": ["-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
Add this to your Claude Desktop claude_desktop_config.json file. See Claude Desktop MCP docs for more info.
{
"mcpServers": {
"dokploy-mcp": {
"command": "npx",
"args": ["-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
Open the "Settings" page of the app, navigate to "Plugins," and enter the following JSON:
{
"mcpServers": {
"dokploy-mcp": {
"command": "npx",
"args": ["-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
The Docker container supports both stdio and HTTP transport modes, making it flexible for different deployment scenarios.
Build the Docker Image:
git clone https://github.com/Dokploy/mcp.git
cd mcp
docker build -t dokploy-mcp .
Manual Docker Commands:
Stdio Mode (for MCP clients):
docker run -it --rm \
-e DOKPLOY_URL=https://your-dokploy-server.com \
-e DOKPLOY_API_KEY=your_token_here \
dokploy-mcp
HTTP Mode (for web applications):
docker run -it --rm \
-p 8080:3000 \
-e MCP_TRANSPORT=http \
-e DOKPLOY_URL=https://your-dokploy-server.com \
-e DOKPLOY_API_KEY=your_token_here \
dokploy-mcp
Docker Compose:
Use the provided docker-compose.yml for production deployments:
# Start HTTP service
docker-compose up -d dokploy-mcp-http
# View logs
docker-compose logs -f dokploy-mcp-http
MCP Client Configuration:
For stdio mode (Claude Desktop, VS Code, etc.):
{
"mcpServers": {
"dokploy-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"DOKPLOY_URL=https://your-dokploy-server.com",
"-e",
"DOKPLOY_API_KEY=your_token_here",
"dokploy-mcp"
]
}
}
}
For HTTP mode (web applications):
Start the HTTP server first, then configure your client to connect to http://localhost:3000/mcp.
The configuration on Windows is slightly different compared to Linux or macOS. Use cmd as the command wrapper:
{
"mcpServers": {
"dokploy-mcp": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@dokploy/mcp"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
| Variable | Required | Description |
|---|---|---|
DOKPLOY_URL | Yes | Your Dokploy server URL (e.g., https://your-dokploy-server.com) |
DOKPLOY_API_KEY | Yes | Your Dokploy API authentication token |
DOKPLOY_ENABLED_TAGS | No | Comma-separated list of tags to filter which tools are loaded (e.g., project,application,postgres) |
DOKPLOY_TIMEOUT | No | Request timeout in milliseconds (default: 30000) |
DOKPLOY_RETRY_ATTEMPTS | No | Number of retry attempts (default: 3) |
DOKPLOY_RETRY_DELAY | No | Delay between retries in milliseconds (default: 1000) |
This MCP server supports multiple transport modes to suit different use cases:
The default mode uses stdio for direct process communication, ideal for desktop applications and command-line usage.
# Run with stdio (default)
npx -y @dokploy/mcp
Modern HTTP mode exposes the server via HTTP/HTTPS supporting both modern and legacy protocols for maximum compatibility:
# Run with HTTP mode
npx -y @dokploy/mcp --http
# or via environment variable
MCP_TRANSPORT=http npx -y @dokploy/mcp
Modern Streamable HTTP Endpoints:
| Endpoint | Method | Description |
|---|---|---|
/mcp | POST | Client-to-server requests |
/mcp | GET | Server-to-client notifications (SSE) |
/mcp | DELETE | Session termination |
/health | GET | Health check |
Legacy SSE Endpoints (Backwards Compatibility):
| Endpoint | Method | Description |
|---|---|---|
/sse | GET | SSE stream initialization |
/messages | POST | Client message posting |
This MCP server provides 508 tools covering the entire Dokploy API, organized into 49 categories:
| Category | Tools | Description |
|---|---|---|
| Project | 8 | Create, list, update, duplicate, search, and delete projects |
| Application | 30 | Full application lifecycle — create, deploy, redeploy, start, stop, build types, git providers (GitHub, GitLab, Bitbucket, Gitea), environment, Traefik config |
| Compose | 29 | Docker Compose management — create, deploy, templates, services, environment, isolated deployments |
| Domain | 9 | Domain CRUD, DNS validation, Traefik.me generation |
| Environment | 7 | Multi-environment support per project |
| Deployment | 8 | Deployment history, queue management, centralized view |
| Category | Tools | Description |
|---|---|---|
| PostgreSQL | 15 | Full lifecycle — create, deploy, start, stop, rebuild, passwords, external ports, environment |
| MySQL | 15 | Full lifecycle — create, deploy, start, stop, rebuild, passwords, external ports, environment |
| MariaDB | 15 | Full lifecycle — create, deploy, start, stop, rebuild, passwords, external ports, environment |
| MongoDB | 15 | Full lifecycle — create, deploy, start, stop, rebuild, passwords, external ports, environment |
| Redis | 15 | Full lifecycle — create, deploy, start, stop, rebuild, passwords, external ports, environment |
| LibSQL | 13 | Full lifecycle — create, deploy, start, stop, rebuild, external ports, environment |
| Category | Tools | Description |
|---|---|---|
| Server | 17 | Multi-server management, metrics, security, monitoring setup |
| Docker | 9 | Container management — list, restart, remove, upload files, inspect config |
| Cluster / Swarm | 8 | Swarm node management, container stats, cluster operations |
| Settings | 51 | Server settings, Traefik config, Docker cleanup, GPU, monitoring, Redis, disk usage |
| Registry | 7 | Docker registry management and testing |
| Category | Tools | Description |
|---|---|---|
| SSO | 10 | Single sign-on providers, trusted origins |
| SSH Keys | 7 | SSH key management — create, generate, list, update, remove |
| Certificates | 5 | SSL/TLS certificate management |
| Security | 4 | Basic auth and security rules per application |
| Custom Roles | 6 | Role-based access control with custom permissions |
| User | 23 | User management, permissions, API keys, invitations, metrics |
| Organization | 11 | Multi-org support, invitations, member roles |
| Category | Tools | Description |
|---|---|---|
| Backup | 12 | Database backups — Postgres, MySQL, MariaDB, MongoDB, LibSQL, Compose, WebServer |
| Volume Backups | 6 | Volume-level backup scheduling and management |
| Destination | 6 | S3-compatible backup destinations (AWS, Cloudflare R2, etc.) |
| Schedule | 6 | Scheduled tasks — cron-based automation |
| Notification | 41 | Multi-channel alerts — Slack, Discord, Telegram, Email, Teams, Gotify, Ntfy, Pushover, Lark, Mattermost, Resend, Custom webhooks |
| Rollback | 2 | Application rollback management |
| Category | Tools | Description |
|---|---|---|
| AI | 9 | AI-powered suggestions, model management |
| Git Providers | 27 | GitHub, GitLab, Gitea, Bitbucket — branches, repos, connection testing |
| Tag | 8 | Project tagging and bulk assignment |
| Patch | 12 | File patching system for applications |
| Mounts | 6 | Volume and bind mount management |
| Port | 4 | Port mapping configuration |
| Redirects | 4 | URL redirect rules |
| Preview Deployments | 4 | PR preview deployment management |
| Stripe | 7 | Billing and subscription management |
| License Key | 6 | Enterprise license management |
| Whitelabeling | 4 | Custom branding for enterprise |
| Audit Log | 1 | Activity audit trail |
| Admin | 1 | Admin-level monitoring setup |
You can limit which tools are loaded by setting the DOKPLOY_ENABLED_TAGS environment variable. This is useful when you only need a subset of tools:
# Only load project, application, and postgres tools
DOKPLOY_ENABLED_TAGS=project,application,postgres
All tools include semantic annotations (readOnlyHint, destructiveHint, idempotentHint) to help MCP clients understand their behavior and safety characteristics.
Built with @modelcontextprotocol/sdk, TypeScript, and Zod for type-safe schema validation:
pnpm generate:allDOKPLOY_ENABLED_TAGSClone the project and install dependencies:
git clone https://github.com/Dokploy/mcp.git
cd mcp
pnpm install
Build:
pnpm build
Regenerate tools from the Dokploy OpenAPI spec:
pnpm generate:all
{
"mcpServers": {
"dokploy-mcp": {
"command": "npx",
"args": ["tsx", "/path/to/mcp/src/index.ts"],
"env": {
"DOKPLOY_URL": "https://your-dokploy-server.com",
"DOKPLOY_API_KEY": "your-dokploy-api-token"
}
}
}
}
npx -y @modelcontextprotocol/inspector npx @dokploy/mcp
Try adding @latest to the package name.
Make sure you are using Node v18 or higher to have native fetch support with npx.
Verify your DOKPLOY_URL and DOKPLOY_API_KEY environment variables are correctly set.
If too many tools are loading, use DOKPLOY_ENABLED_TAGS to filter by category.
We welcome contributions! If you'd like to contribute to the Dokploy MCP Server, please check out our Contributing Guide.
If you encounter any issues, have questions, or want to suggest a feature, please open an issue in our GitHub repository.
This project is licensed under the Apache License.
FAQs
MCP Server for Dokploy API
We found that @dokploy/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.

Research
/Security News
A new npm package tests AI malware scanners with prompt injection, safety-triggering comments, context flooding, and obfuscated JavaScript.