MCP Catalogs
Home

cclsp vs everything

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

cclsp
by ktnyt
everything
by modelcontextprotocol
Stars★ 637★ 85,748
30d uses
Score5477
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

cclsp · Summary

cclsp is an MCP server that bridges AI coding assistants with LSP servers for robust code navigation and symbol manipulation.

everything · Summary

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

cclsp · Use cases

  • Jumping to function or variable definitions directly from AI code suggestions
  • Finding all references to a symbol across a large codebase
  • Safely renaming variables, functions, or classes with confidence

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

cclsp · Install

Installation

  1. Install cclsp globally:
npm install -g cclsp
  1. Run the setup wizard:
cclsp setup
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "cclsp": {
      "command": "cclsp",
      "env": {
        "CCLSP_CONFIG_PATH": "/path/to/your/cclsp.json"
      }
    }
  }
}

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.