New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@mseep/coolify

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mseep/coolify

MCP server for Coolify API integration

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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:

  • Clone the repository:
git clone <repository-url>
cd coolify-mcp
  • Install dependencies:
npm install

then run

npm build

to create the build directory.

  • 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": "<application-uuid>"}
    • Response: Details of the specified application.
  • Start Application

    • Request: start-application
    • Parameters: {"uuid": "<application-uuid>"}
    • Response: Result of the start operation.
  • Stop Application

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

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

    • Request: deploy
    • Parameters: {"tag": "<tag-name>", "uuid": "<application-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.

Keywords

mseep

FAQs

Package last updated on 22 Apr 2025

Did you know?

Socket

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.

Install

Related posts