everything vs docmole
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | docmole by Vigtu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
docmole · Summary
An MCP server that lets you query any documentation site with AI, supporting both local RAG and Mintlify-powered sites.
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
docmole · Use cases
- Search documentation directly from AI assistants like Claude or Cursor
- Build custom documentation search solutions for internal documentation
- Enable AI assistants to provide accurate, up-to-date information from documentation sources
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-everythingdocmole · Install
Installation
Using bunx (no install needed):
bunx docmole --helpOr install globally:
bun install -g docmoleLocal RAG Mode
# One-time setup
bunx docmole setup --url https://docs.example.com --id my-docs
# Start the MCP server
bunx docmole serve --project my-docsMintlify Mode (zero setup)
bunx docmole -p agno-v2Claude Desktop Configuration
{
"mcpServers": {
"my-docs": {
"command": "bunx",
"args": ["docmole", "serve", "--project", "my-docs"]
},
"mintlify-docs": {
"command": "bunx",
"args": ["docmole", "-p", "agno-v2"]
}
}
}