J

coolify-mcp-server

...
Created 2/16/2025byStuMason

Language:

JavaScript

Stars:

5

Forks:

6

Coolify MCP Server

Overview

This is still very much in development.

The Coolify MCP (Model Context Protocol) Server is an integration layer for the Coolify API, allowing users to interact with various resources and applications through a standardized interface. This server is built using TypeScript and leverages the Model Context Protocol SDK for seamless communication.

Coolify MCP Server

Coolify MCP Server

Features

  • List resources and applications
  • Get details of specific applications
  • Start, stop, and restart applications
  • Deploy applications by tag or UUID
  • Health check for system status
  • Fetch the current version of the Coolify API

Installation

To set up the Coolify MCP Server, follow these steps:

  1. Clone the repository:
git clone 
cd coolify-mcp
  1. Install dependencies:
npm install

then run

npm build

to create the build directory.

  1. Set Claude Config:

You'll need something like this in your claude_desktop_config.json file:

    "mcpServers": {
        "coolify": {
            "command": "node",
            "args": [
                "/full/path/to/mcp-coolify/build/index.js"
            ],
            "env": {
                "COOLIFY_ACCESS_TOKEN": "coolify_api_key",
                "COOLIFY_BASE_URL": "https://your-coolify-url.co.uk"
            }
        }
    }

API Endpoints

The server supports the following operations:

  • List Resources

    • Request: list-resources
    • Response: List of all resources in Coolify.
  • List Applications

    • Request: list-applications
    • Response: List of all applications.
  • Get Application Details

    • Request: get-application
    • Parameters: {"uuid": ""}
    • Response: Details of the specified application.
  • Start Application

    • Request: start-application

                - **Parameters:** `{"uuid": ""}`
      
    • Response: Result of the start operation.

  • Stop Application

    • Request: stop-application
    • Parameters: {"uuid": ""}
    • Response: Result of the stop operation.
  • Restart Application

    • Request: restart-application
    • Parameters: {"uuid": ""}
    • Response: Result of the restart operation.
  • Deploy Application

    • Request: deploy
    • Parameters: {"tag": "", "uuid": "", "force": true}
    • Response: Result of the deploy operation.
  • Get Version

    • Request: get-version
    • Response: Current version of the Coolify API.
  • Health Check

    • Request: health-check
    • Response: System health status.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.

Last updated: 3/7/2025

Publisher info

StuMason's avatar

Stu Mason

Writing profiles is for bots

Folkestone
21
followers
7
following
45
repos

More MCP servers built with JavaScript

mcp-server-semgrep

MCP Server Semgrep is a [Model Context Protocol](https://modelcontextprotocol.io) compliant server that integrates the powerful Semgrep static analysis tool with AI assistants like Anthropic Claude. It enables advanced code analysis, security vulnerability detection, and code quality improvements directly through a conversational interface.

By Szowesgad9
protonmail-mcp

This MCP server provides email sending functionality using Protonmail's SMTP service. It allows both Claude Desktop and Cline VSCode extension to send emails on your behalf using your Protonmail credentials.

By amotivv6
agentql-mcp

Model Context Protocol server that integrates AgentQL's data extraction capabilities.

By tinyfish-io45