MCP Catalogs
Home

mcp-framework vs everything

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

mcp-framework
by koki7o
everything
by modelcontextprotocol
Stars★ 22★ 85,748
30d uses
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsBrowser Automation
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last commit5 mo agothis month

mcp-framework · Summary

Rust framework for building AI agents with native MCP support, multi-LLM integration, and web inspector.

everything · Summary

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

mcp-framework · Use cases

  • Building research assistants that can search and analyze information
  • Creating coding assistants that can read codebases and write code
  • Developing browser automation agents for web scraping and form filling

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

mcp-framework · Install

Installation

# Requires Rust 1.70+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
git clone https://github.com/koki7o/mcp-framework
cd mcp-framework
cp .env.example .env
# Edit .env and add API keys

# Run examples
cargo run --example server_with_tools
cargo run --example anthropic_agent_demo_with_tools
cargo run --example openai_agent_demo_with_tools

Claude Desktop Integration

Add to Claude's config.json:

{
  "mcpServers": {
    "mcp-framework": {
      "command": "cargo",
      "args": ["run", "--example", "server_with_tools"],
      "env": {
        "ANTHROPIC_API_KEY": "your-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.