npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vibetools/dokploy-mcp

v1.0.0

Published

MCP Server for the Dokploy API - complete coverage of all endpoints

Readme

@vibetools/dokploy-mcp

npm version License: MIT Node >= 22

MCP server for the Dokploy API. 196 tools across 23 modules. Your AI agent can now deploy apps, manage databases, configure domains, and handle backups -- without you touching a dashboard.

Forked from Dokploy/mcp and rebuilt with expanded API coverage, tool annotations, Zod v4 schemas, lazy config loading, and a setup wizard. The original had 67 tools. This one has 196. Standing on shoulders, etc.

Quick Start

Grab your API key from Dokploy Settings > Profile > API/CLI and add this to your MCP client config:

{
  "mcpServers": {
    "dokploy": {
      "command": "npx",
      "args": ["@vibetools/dokploy-mcp"],
      "env": {
        "DOKPLOY_URL": "https://panel.example.com",
        "DOKPLOY_API_KEY": "your-api-key"
      }
    }
  }
}

That's it. No setup wizard, no config files, no PhD.

Alternative: setup wizard

If you prefer saving credentials to disk instead of env vars:

npx @vibetools/dokploy-mcp setup

Validates credentials, saves to ~/.config/dokploy-mcp/config.json, and shows you the minimal MCP config to copy. After that, the env block is optional.

Alternative: Dokploy CLI auto-detection

If you already have the Dokploy CLI installed and authenticated -- zero config needed. It just works.

Features

  • 196 tools, 23 modules -- applications, compose, databases (Postgres/MySQL/MariaDB/MongoDB/Redis), domains, backups, Docker, settings, and more
  • Tool annotations -- readOnlyHint, destructiveHint, idempotentHint so clients can warn before you nuke something
  • Type-safe schemas -- Zod v4 validation on every parameter
  • Lazy config loading -- validates credentials on first API call, not at startup
  • Three config sources -- env vars > config file > Dokploy CLI (first match wins)
  • Minimal dependencies -- just @modelcontextprotocol/sdk, zod, and @clack/prompts

MCP Client Config

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "dokploy": {
      "command": "npx",
      "args": ["@vibetools/dokploy-mcp"],
      "env": {
        "DOKPLOY_URL": "https://panel.example.com",
        "DOKPLOY_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

Add to .mcp.json:

{
  "mcpServers": {
    "dokploy": {
      "command": "npx",
      "args": ["@vibetools/dokploy-mcp"],
      "env": {
        "DOKPLOY_URL": "https://panel.example.com",
        "DOKPLOY_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json or .cursor/mcp.json:

{
  "mcpServers": {
    "dokploy": {
      "command": "npx",
      "args": ["@vibetools/dokploy-mcp"],
      "env": {
        "DOKPLOY_URL": "https://panel.example.com",
        "DOKPLOY_API_KEY": "your-api-key"
      }
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "dokploy": {
      "command": "npx",
      "args": ["@vibetools/dokploy-mcp"],
      "env": {
        "DOKPLOY_URL": "https://panel.example.com",
        "DOKPLOY_API_KEY": "your-api-key"
      }
    }
  }
}

Already ran setup or have Dokploy CLI authenticated? Drop the env block entirely.

Tools

| Module | Tools | Module | Tools | |--------|-------|--------|-------| | Project | 6 | Deployment | 2 | | Application | 26 | Docker | 4 | | Compose | 14 | Certificates | 4 | | Domain | 8 | Registry | 6 | | PostgreSQL | 13 | Destination | 6 | | MySQL | 13 | Backup | 8 | | MariaDB | 13 | Mounts | 4 | | MongoDB | 13 | Port | 4 | | Redis | 13 | Redirects | 4 | | Security | 4 | Cluster | 4 | | Settings | 25 | Admin | 1 | | User | 1 | | |

Full reference with parameters and descriptions: docs/tools.md

API coverage report: docs/coverage.md

Configuration

| Variable | Required | Description | |---|---|---| | DOKPLOY_URL | Yes | Dokploy panel URL -- automatically normalized to /api/trpc | | DOKPLOY_API_KEY | Yes | API key from Dokploy Settings > API | | DOKPLOY_TIMEOUT | No | Request timeout in ms (default: 30000) |

Resolution order: env vars > ~/.config/dokploy-mcp/config.json > Dokploy CLI config.

CLI

npx @vibetools/dokploy-mcp              # Start MCP server (stdio)
npx @vibetools/dokploy-mcp setup        # Interactive setup wizard (aliases: init, auth)
npx @vibetools/dokploy-mcp version      # Show version

Development

git clone https://github.com/vcode-sh/dokploy-mcp.git
cd dokploy-mcp
npm install && npm run build

Point your MCP client at the local build:

{
  "mcpServers": {
    "dokploy": {
      "command": "node",
      "args": ["/path/to/dokploy-mcp/dist/index.js"],
      "env": {
        "DOKPLOY_URL": "https://panel.example.com",
        "DOKPLOY_API_KEY": "your-api-key"
      }
    }
  }
}
npm run dev        # Watch mode
npm run typecheck  # Type-check
npm run lint       # Lint with Biome
npm run lint:fix   # Auto-fix

Test with the MCP Inspector:

npx @modelcontextprotocol/inspector node dist/index.js

Standing on the Shoulders of People Who Actually Did the Work

This project is a fork of Dokploy/mcp. I rewrote most of it, tripled the tool count, and added things like a setup wizard and config resolution chain -- but "rewrote" is easy when someone else already built the thing you're rewriting.

Mauricio Siu created Dokploy itself -- a genuinely impressive open-source PaaS -- and kicked off the MCP server repo. Without Dokploy, there's no API. Without the API, there's no MCP server. Without the MCP server, I'd have had to start from zero instead of "from scratch."

Henrique Andrade did the actual heavy lifting on the original MCP. Projects, applications, PostgreSQL, MySQL, domains -- that was all him. 15 commits, every merged PR. The kind of contributor who doesn't just open issues, he closes them.

And to everyone who opened PRs on the original repo -- merged or not -- your code and ideas shaped what this became:

Joshua Macauley · lucasleal-developer · Nour Eddine Hamaidi · Corey · Azil0ne

Unmerged PRs are still blueprints. Someone reads your compose tools PR and thinks "right, I should cover that." Someone sees your consolidation approach and borrows the idea. That's how open source actually works -- not through clean merge histories, but through stolen inspiration with better commit messages.

Cheers to all of you. I owe you mass-produced coffee at minimum.

License

MIT - Vibe Code

Original work by Henrique Andrade under Apache 2.0 -- see LICENSE-ORIGINAL.