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 | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 7 mo ago | this 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
- Add CodeMesh to Claude Desktop
claude mcp add codemesh npx -y codemeshOr manually add to your Claude Desktop MCP settings:
{
"mcpServers": {
"codemesh": {
"command": "npx",
"args": ["-y", "codemesh"]
}
}
}- 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