MCP Catalogs
Home

atlas-docs-mcp vs everything

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

atlas-docs-mcp
by CartographAI
everything
by modelcontextprotocol
Stars★ 35★ 85,748
30d uses
Score3877
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit13 mo agothis month

atlas-docs-mcp · Summary

An MCP server providing clean markdown documentation for popular libraries and frameworks to enhance LLM code generation accuracy.

everything · Summary

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

atlas-docs-mcp · Use cases

  • Improving code generation accuracy for less popular libraries
  • Providing up-to-date documentation for newly released frameworks
  • Enabling AI assistants to correctly implement libraries like Astro, Prisma, and shadcn/ui

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

atlas-docs-mcp · Install

Install the Atlas Docs MCP server using the following configuration in your MCP client:

{
  "mcpServers": {
    "atlas-docs": {
      "command": "npx",
      "args": ["-y", "@cartographai/atlas-docs-mcp"]
    }
  }
}

Alternatively, install via Smithery:

npx -y @smithery/cli install @CartographAI/atlas-docs-mcp --client [claude|cursor|cline|windsurf]

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.