jdocmunch-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
jdocmunch-mcp by jgravelle | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 171 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
jdocmunch-mcp · Summary
MCP server for efficient documentation exploration via structured section indexing, reducing token consumption by 95% compared to traditional approaches.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
jdocmunch-mcp · Use cases
- Efficient documentation exploration for AI agents working with large codebases
- Token-optimized retrieval of specific configuration sections from documentation
- Context-aware documentation navigation without loading entire files
- Structured knowledge extraction from technical documentation with preserved hierarchy
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
jdocmunch-mcp · Install
Installation
**Prerequisites**
- Python 3.10+
- pip
**Install via pip:**
pip install jdocmunch-mcp**Configure Claude Desktop:** Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"jdocmunch": {
"command": "uvx",
"args": ["jdocmunch-mcp"]
}
}
}For optional AI summaries and GitHub auth:
{
"mcpServers": {
"jdocmunch": {
"command": "uvx",
"args": ["jdocmunch-mcp"],
"env": {
"GITHUB_TOKEN": "ghp_...",
"ANTHROPIC_API_KEY": "sk-ant-..."
}
}
}
}After saving, restart Claude Desktop.
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