MCP Catalogs
Home

claude-code-mcp vs everything

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

claude-code-mcp
by KunihiroS
everything
by modelcontextprotocol
Stars★ 34★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit2 mo agothis month

claude-code-mcp · Summary

An MCP server that bridges less capable LLMs with Claude Code by exposing code analysis tools via stdio.

everything · Summary

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

claude-code-mcp · Use cases

  • Integrate Claude Code's analysis capabilities into Claude Desktop
  • Enable code review and fixing workflows with less capable LLMs
  • Create custom code analysis tools by combining multiple Claude Code features

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

claude-code-mcp · Install

Installation

**Using npx (Recommended)**

npx @kunihiros/claude-code-mcp

**Global Installation**

npm install -g claude-code-mcp

Configuration

Add to your MCP Host settings (e.g., Claude Desktop):

"claude-code-server": {
  "command": "npx",
  "args": [
    "-y",
    "@kunihiros/claude-code-mcp"
  ],
  "env": {
    "CLAUDE_BIN": "/path/to/your/claude/executable",
    "LOG_LEVEL": "info"
  },
  "disabled": false
}

Set the CLAUDE_BIN environment variable to the full path of your Claude CLI executable.

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.