mcp-documentation-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-documentation-server by andrea9293 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 313 | ★ 149 |
| 30d uses | — | — |
| Score | 52 | 85 |
| Official | — | — |
| Categories | File SystemSearchAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 3 mo ago | 2 mo ago |
mcp-documentation-server · Summary
A TypeScript MCP server for local document management with semantic search using Orama vector database and optional Gemini AI integration.
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.
mcp-documentation-server · Use cases
- Managing and searching technical documentation and API references
- Creating a knowledge base for internal company documentation
- Personal document organization with semantic search capabilities
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
mcp-documentation-server · Install
Installation
- Configure your MCP client (e.g., Claude Desktop, VS Code):
{
"mcpServers": {
"documentation": {
"command": "npx",
"args": [
"-y",
"@andrea9293/mcp-documentation-server"
],
"env": {
"MCP_BASE_DIR": "/path/to/workspace",
"GEMINI_API_KEY": "your-api-key-here",
"MCP_EMBEDDING_MODEL": "Xenova/all-MiniLM-L6-v2",
"START_WEB_UI": "true",
"WEB_PORT": "3080"
}
}
}
}- Install the package:
npm install -g @andrea9293/mcp-documentation-serverultimate_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_server