MCP Catalogs
Home

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
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsSearch
LanguageTypeScriptTypeScript
Last committhis month1 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-everything

docmole · Install

Installation

Using bunx (no install needed):

bunx docmole --help

Or install globally:

bun install -g docmole

Local 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-docs

Mintlify Mode (zero setup)

bunx docmole -p agno-v2

Claude Desktop Configuration

{
  "mcpServers": {
    "my-docs": {
      "command": "bunx",
      "args": ["docmole", "serve", "--project", "my-docs"]
    },
    "mintlify-docs": {
      "command": "bunx",
      "args": ["docmole", "-p", "agno-v2"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.