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

@iflow-mcp/stumason_coolify

v1.0.0

Published

MCP server for Coolify API integration

Downloads

6

Readme

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 <repository-url>
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": "<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.