drio
Open app

Coolify Mcp

Source

MCP server for Coolify

Catalog onlyCatalog onlySTDIO

Overview

Coolify MCP Server is a Model Context Protocol (MCP) server implementation for Coolify, enabling AI assistants to interact with your Coolify instances through natural language.

To use Coolify MCP Server, set up the server with your Coolify instance and use compatible AI tools to send commands for server management, project management, application management, and more.

  • Natural language interaction with Coolify instances - Server, project, application, and database management - Resource monitoring and deployment operations
  1. Managing servers and resources in a Coolify instance.
  2. Creating and updating projects and applications.
  3. Monitoring resource usage and deployment statuses.

Add to your AI client

Use these steps to connect Coolify Mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "coolify-mcp-stumason": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-coolify-mcp-stumason"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "coolify-mcp-stumason": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-coolify-mcp-stumason"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "coolify-mcp-stumason": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-coolify-mcp-stumason"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "coolify-mcp-stumason": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-coolify-mcp-stumason"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "coolify-mcp-stumason": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-coolify-mcp-stumason"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "coolify-mcp-stumason": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-coolify-mcp-stumason"
      ]
    }
  }
}

FAQ

What is required to run Coolify MCP Server?

You need Node.js >= 18, a running Coolify instance, and a Coolify API access token.

Can I use Coolify MCP Server with any AI tool?

Yes, as long as the tool supports MCP commands.

Is there a community for support?

Yes, you can check the issues page on GitHub or join the Coolify community.