MCP Catalogs
Home

docfork vs everything

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

docfork
by docfork
everything
by modelcontextprotocol
Stars★ 479★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsAI / LLM ToolsSearch
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

docfork · Summary

Docfork provides AI coding agents with real-time documentation access through MCP servers to prevent API hallucinations.

everything · Summary

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

docfork · Use cases

  • AI coding assistants accessing up-to-date documentation for third-party libraries
  • Development teams maintaining consistent API documentation across their organization
  • Searching through complex documentation without leaving the coding environment

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

docfork · Install

Installation

  1. **Automatic Setup (Recommended)**

``bash npx dgrep setup --cursor # For Cursor npx dgrep setup --claude # For Claude Code npx dgrep setup --opencode # For OpenCode ``

  1. **Manual Configuration for Claude Desktop**

Add to your Claude Desktop config: ``json { "mcpServers": { "docfork": { "url": "https://mcp.docfork.com/mcp", "headers": { "DOCFORK_API_KEY": "YOUR_API_KEY" } } } } ``

  1. **For Other MCP Clients**

Follow the setup guides for your specific client at [docfork.com/docs/mcp/setup](https://docfork.com/docs/mcp/setup)

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.