rtfmbro-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
rtfmbro-mcp by marckrenn | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 87 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | 11 mo ago | this month |
rtfmbro-mcp · Summary
rtfmbro provides always-up-to-date, version-specific package documentation as context for coding agents via MCP.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
rtfmbro-mcp · Use cases
- Fetching version-specific documentation for packages in lockfiles
- Providing accurate documentation for legacy projects using older package versions
- Integrating with AI coding agents to provide relevant documentation context
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
rtfmbro-mcp · Install
Installation
Quick Start
Claude Code
claude mcp add-json rtfmbro '{ "type": "http", "url": "https://rtfmbro.smolosoft.dev/mcp/" }'Claude Desktop / VS Code / etc.
Add the remote server to your MCP configuration:
{
"rtfmbro": {
"type": "http",
"url": "https://rtfmbro.smolosoft.dev/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