MCP Catalogs
Home

codemesh vs everything

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

codemesh
by kiliman
everything
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4177
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit7 mo agothis month

codemesh · Summary

CodeMesh is a self-improving MCP server that lets AI agents orchestrate multiple MCP servers through TypeScript code.

everything · Summary

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

codemesh · Use cases

  • Coordinating multiple MCP servers to complete complex tasks with a single prompt
  • Automatically documenting and improving tool outputs through repeated use
  • Creating specialized agents that can efficiently orchestrate different services

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

codemesh · Install

Installation

  1. Add CodeMesh to Claude Desktop
claude mcp add codemesh npx -y codemesh

Or manually add to your Claude Desktop MCP settings:

{
  "mcpServers": {
    "codemesh": {
      "command": "npx",
      "args": ["-y", "codemesh"]
    }
  }
}
  1. Create Configuration

Create a .codemesh/config.json file in your project directory to configure which MCP servers CodeMesh should connect to.

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.