MCP Catalogs
Home

sequentialthinking vs coolify-mcp

Side-by-side comparison to help you pick between these two MCP servers.

sequentialthinking
by modelcontextprotocol
coolify-mcp
by StuMason
Stars★ 85,748★ 372
30d uses
Score7553
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Ops & InfraDeveloper ToolsMonitoring
LanguageTypeScriptTypeScript
Last committhis monththis month

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

coolify-mcp · Summary

Comprehensive MCP server with 38 token-optimized tools for managing Coolify self-hosted PaaS through AI assistants.

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

coolify-mcp · Use cases

  • Debug Coolify applications and infrastructure through natural language prompts
  • Perform batch operations like restarting multiple applications or updating environment variables
  • Search Coolify documentation and get contextual help for specific configurations

sequentialthinking · Install

Installation

**Claude Desktop**: Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: Use one of the installation buttons or manually configure with:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}

coolify-mcp · Install

Installation

Prerequisites

  • Node.js >= 18
  • A running Coolify instance (tested with v4.0.0-beta.460)
  • Coolify API access token (generate in Coolify Settings > API)

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "coolify": {
      "command": "npx",
      "args": ["-y", "@masonator/coolify-mcp"],
      "env": {
        "COOLIFY_ACCESS_TOKEN": "your-api-token",
        "COOLIFY_BASE_URL": "https://your-coolify-instance.com"
      }
    }
  }
}

Claude Code

claude mcp add coolify \
  -e COOLIFY_BASE_URL="https://your-coolify-instance.com" \
  -e COOLIFY_ACCESS_TOKEN="your-api-token" \
  -- npx @masonator/coolify-mcp@latest
Comparison generated from public README + GitHub signals. Last updated automatically.