MCP Catalogs
Home

everything vs rust-mcp-schema

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

everything
by modelcontextprotocol
rust-mcp-schema
by rust-mcp-stack
Stars★ 85,748★ 75
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM Tools
LanguageTypeScriptRust
Last committhis month2 mo ago

everything · Summary

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

rust-mcp-schema · Summary

Type-safe Rust implementation of MCP protocol schemas, automatically generated from official specifications.

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

rust-mcp-schema · Use cases

  • Building MCP servers in Rust with type safety
  • Creating MCP clients that interact with various LLM applications
  • Developing AI-powered tools that integrate with external data sources via MCP

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

rust-mcp-schema · Install

Add to your Cargo.toml:

rust-mcp-schema = "0.10.0"

For Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "rust-mcp": {
      "command": "path-to-your-binary",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.