ComIDP-MCP-Server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
ComIDP-MCP-Server by ComPDFKit | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 83 | ★ 149 |
| 30d uses | — | — |
| Score | 40 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 8 mo ago | 2 mo ago |
ComIDP-MCP-Server · Summary
ComIDP MCP Server extracts data from PDFs and integrates with Claude Desktop via Model Context Protocol.
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.
ComIDP-MCP-Server · Use cases
- Automating data extraction from PDF documents for further processing
- Integrating document intelligence into Claude Desktop workflows
- Batch processing multiple PDF documents for information extraction
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
ComIDP-MCP-Server · Install
Installation
- Install dependencies:
- Python 3.10 or higher - pip (Python package installer) - uv: pip install uv
- Create a virtual environment and install requirements:
``bash cd comidp-mcp/src python -m venv .venv source .venv/bin/activate # Linux/MacOS .venv\Scripts\activate # Windows pip install -r requirements.txt ``
- Configure Claude Desktop by editing claude_desktop_config.json:
``json { "mcpServers": { "comidp-mcp": { "command": "uv", "args": [ "run", "PATH/TO/comidp-mcp/src/virtual environment python", "PATH/TO/comidp-mcp/src/comidp_tools.py" ], "env": { "IDPKEY": "your_idp_key_here" } } } } ``
- Restart Claude Desktop.
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_server