ComIDP-MCP-Server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
ComIDP-MCP-Server by ComPDFKit | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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.
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.