rust-docs-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
rust-docs-mcp-server by Govcraft | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 276 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | 6 mo ago | this month |
rust-docs-mcp-server · Summary
MCP server providing up-to-date Rust crate documentation via semantic search and LLM summarization.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
rust-docs-mcp-server · Use cases
- AI coding assistants getting up-to-date API documentation for Rust crates
- Development teams ensuring their AI tools use current crate features and methods
- Reducing manual documentation lookup for frequently updated Rust libraries
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-docs-mcp-server · Install
Installation
Pre-built Binary (Recommended)
- Download the appropriate binary from [GitHub Releases](https://github.com/Govcraft/rust-docs-mcp-server/releases)
- Extract the binary and place it in your PATH
From Source
git clone https://github.com/Govcraft/rust-docs-mcp-server.git
cd rust-docs-mcp-server
cargo build --releaseClaude Desktop Configuration
{
"mcpServers": {
"rust-docs-serde": {
"command": "/path/to/rustdocs_mcp_server",
"args": ["serde@^1.0"]
},
"rust-docs-tokio": {
"command": "rustdocs_mcp_server",
"args": ["tokio"]
}
}
}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