MCP Catalogs
Home

mcp-1panel vs everything

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

mcp-1panel
by 1Panel-dev
everything
by modelcontextprotocol
Stars★ 147★ 85,748
30d uses
Score4577
Official
Categories
Ops & InfraDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit7 mo agothis month

mcp-1panel · Summary

MCP server for 1Panel, providing tools for website, database, and server management.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-1panel · Use cases

  • AI assistants managing web servers and creating websites through natural language
  • Automating server administration tasks using AI-powered prompts
  • Monitoring system resources and website performance via MCP-integrated AI tools

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-1panel · Install

Installation

Prerequisites

  • Go 1.23.0 or higher
  • Existing 1Panel installation

Build from Source

git clone https://github.com/1Panel-dev/mcp-1panel.git
cd mcp-1panel
make build

Move ./build/mcp-1panel to your system PATH.

Install using go install

go install github.com/1Panel-dev/mcp-1panel@latest

Configuration for Cursor/Windsurf

{
  "mcpServers": {
    "mcp-1panel": {
      "command": "mcp-1panel",
      "env": {
        "PANEL_ACCESS_TOKEN": "<your 1Panel access token>",
        "PANEL_HOST": "http://localhost:8080"
      }
    }
  }
}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

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

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.