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 | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 4 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-everythingmcp-llms-txt-explorer · Install
Installation
Via Smithery (recommended)
npx -y @smithery/cli install @thedaviddias/mcp-llms-txt-explorer --client claudeManual Installation
- Clone the repository:
git clone https://github.com/thedaviddias/mcp-llms-txt-explorer.git
cd mcp-llms-txt-explorer- Install dependencies:
pnpm install- Build the server:
pnpm run buildClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"llms-txt-explorer": {
"command": "npx",
"args": ["-y", "@thedaviddias/mcp-llms-txt-explorer"]
}
}
}