MCP Catalogs
Home

plane-mcp-server vs everything

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

plane-mcp-server
by makeplane
everything
by modelcontextprotocol
Stars★ 225★ 85,748
30d uses
Score5077
Official
Categories
ProductivityDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

plane-mcp-server · Summary

Plane's official MCP server provides comprehensive tools for project management, work items, cycles, modules, and more through multiple transport protocols.

everything · Summary

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

plane-mcp-server · Use cases

  • Automating project creation and management workflows
  • Synchronizing work items between Plane and other tools
  • Generating reports from project data through AI assistants

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

plane-mcp-server · Install

Installation

The Plane MCP server supports multiple transport methods:

**1. Stdio Transport (recommended)**

uvx plane-mcp-server stdio

**2. Remote HTTP Transport (OAuth)**

npx mcp-remote@latest https://mcp.plane.so/http/mcp

**Claude Desktop Configuration**

{
  "mcpServers": {
    "plane": {
      "command": "uvx",
      "args": ["plane-mcp-server", "stdio"],
      "env": {
        "PLANE_API_KEY": "<your-api-key>",
        "PLANE_WORKSPACE_SLUG": "<your-workspace-slug>",
        "PLANE_BASE_URL": "https://api.plane.so"
      }
    }
  }
}

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.