MCP Catalogs
Home

deep-code-reasoning-mcp vs everything

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

deep-code-reasoning-mcp
by evalops
everything
by modelcontextprotocol
Stars★ 105★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

deep-code-reasoning-mcp · Summary

MCP server combining Claude Code with Google's Gemini AI for advanced code analysis and reasoning.

everything · Summary

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

deep-code-reasoning-mcp · Use cases

  • Analyzing distributed system failures across multiple services with GB of logs
  • Performance regression hunting by correlating deployment timeline with metrics
  • Hypothesis-driven debugging with systematic validation across multiple scenarios

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

deep-code-reasoning-mcp · Install

Quick Install for Cursor

[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=deep-code-reasoning&config=eyJjb21tYW5kIjoibm9kZSIsImFyZ3MiOlsiL3BhdGgvdG8vZGVlcC1jb2RlLXJlYXNvbmluZy1tY3AvZGlzdC9pbmRleC5qcyJdLCJlbnYiOnsiR0VNSU5JX0FQSV9LRVkiOiJ5b3VyLWdlbWluaS1hcGkta2V5In19)

Manual Installation

  1. Clone the repository:
git clone https://github.com/Haasonsaas/deep-code-reasoning-mcp.git
cd deep-code-reasoning-mcp
  1. Install dependencies:
npm install
  1. Set up your Gemini API key:
cp .env.example .env
# Edit .env and add your GEMINI_API_KEY
  1. Build the project:
npm run build

Claude Desktop Configuration

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

{
  "mcpServers": {
    "deep-code-reasoning": {
      "command": "node",
      "args": ["/path/to/deep-code-reasoning-mcp/dist/index.js"],
      "env": {
        "GEMINI_API_KEY": "your-gemini-api-key"
      }
    }
  }
}

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.