ComIDP-MCP-Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ComIDP-MCP-Server by ComPDFKit | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this month |
ComIDP-MCP-Server · Summary
ComIDP MCP Server extracts data from PDFs and integrates with Claude Desktop via Model Context Protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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.
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-everything