everything vs extract-llms-docs
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | extract-llms-docs by nirholas | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsWeb Scraping |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
extract-llms-docs · Summary
An MCP server that extracts llms.txt documentation from websites for AI agents.
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
extract-llms-docs · Use cases
- Feed documentation to AI coding assistants like Cursor and Windsurf
- Build context-aware AI agents with up-to-date documentation
- Create documentation pipelines for RAG systems
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-everythingextract-llms-docs · Install
Installation
Web Application
Visit [llm.energy](https://llm.energy) to use the hosted version.
MCP Server
Add to your MCP client configuration (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"llm-energy": {
"command": "npx",
"args": ["-y", "@llm-energy/mcp-server"]
}
}
}Local Development
# Clone the repository
git clone https://github.com/nirholas/extract-llms-docs.git
cd extract-llms-docs
# Install dependencies
pnpm install
# Start development server
pnpm dev