MCP Catalogs
Home

everything vs mcp-llms-txt-explorer

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

everything
by modelcontextprotocol
mcp-llms-txt-explorer
by thedaviddias
Stars★ 85,748★ 74
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
Web ScrapingAI / LLM ToolsDeveloper Tools
LanguageTypeScriptJavaScript
Last committhis month4 mo ago

everything · Summary

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

mcp-llms-txt-explorer · Summary

MCP server for discovering and analyzing websites with llms.txt files.

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-llms-txt-explorer · Use cases

  • Discovering websites that support AI model access via llms.txt
  • Validating the implementation of llms.txt protocol on specific domains
  • Building applications that need to interact with llms.txt-compliant sites

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

mcp-llms-txt-explorer · Install

Installation

Via Smithery (recommended)

npx -y @smithery/cli install @thedaviddias/mcp-llms-txt-explorer --client claude

Manual Installation

  1. Clone the repository:
git clone https://github.com/thedaviddias/mcp-llms-txt-explorer.git
cd mcp-llms-txt-explorer
  1. Install dependencies:
pnpm install
  1. Build the server:
pnpm run build

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "llms-txt-explorer": {
      "command": "npx",
      "args": ["-y", "@thedaviddias/mcp-llms-txt-explorer"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.