MCP Catalogs
Home

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
Score4077
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit8 mo agothis 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

  1. Install dependencies:

- Python 3.10 or higher - pip (Python package installer) - uv: pip install uv

  1. 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 ``

  1. 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" } } } } ``

  1. 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
Comparison generated from public README + GitHub signals. Last updated automatically.