ultimate_mcp_server vs extract-llms-docs
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | extract-llms-docs by nirholas | |
|---|---|---|
| Stars | ★ 149 | ★ 30 |
| 30d uses | — | — |
| Score | 85 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsWeb Scraping |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
extract-llms-docs · Summary
An MCP server that extracts llms.txt documentation from websites for AI agents.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverextract-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