MCP Catalogs
Home

mcp-documentation-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-documentation-server
by andrea9293
everything
by modelcontextprotocol
Stars★ 313★ 85,748
30d uses
Score5277
Official
Categories
File SystemSearchAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

mcp-documentation-server · Summary

A TypeScript MCP server for local document management with semantic search using Orama vector database and optional Gemini AI integration.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-documentation-server · Use cases

  • Managing and searching technical documentation and API references
  • Creating a knowledge base for internal company documentation
  • Personal document organization with semantic search capabilities

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

mcp-documentation-server · Install

Installation

  1. Configure your MCP client (e.g., Claude Desktop, VS Code):
{
  "mcpServers": {
    "documentation": {
      "command": "npx",
      "args": [
        "-y",
        "@andrea9293/mcp-documentation-server"
      ],
      "env": {
        "MCP_BASE_DIR": "/path/to/workspace",
        "GEMINI_API_KEY": "your-api-key-here",
        "MCP_EMBEDDING_MODEL": "Xenova/all-MiniLM-L6-v2",
        "START_WEB_UI": "true",
        "WEB_PORT": "3080"
      }
    }
  }
}
  1. Install the package:
npm install -g @andrea9293/mcp-documentation-server

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
Comparison generated from public README + GitHub signals. Last updated automatically.