filesystem vs nutrient-document-engine-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | nutrient-document-engine-mcp-server by PSPDFKit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 59 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | ProductivityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
nutrient-document-engine-mcp-server · Summary
MCP server for document processing with text extraction, redaction, and editing capabilities through natural language.
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
nutrient-document-engine-mcp-server · Use cases
- Automating document analysis and data extraction from contracts, invoices, and forms
- Redacting sensitive information like social security numbers and payment details from documents
- Splitting large documents into smaller sections for easier processing and analysis
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.
nutrient-document-engine-mcp-server · Install
Installation
Prerequisites
- Claude Desktop
- Docker Compose
- Node.js 18+
Setup with Claude Desktop
- Start Nutrient Document Engine:
git clone https://github.com/PSPDFKit/nutrient-document-engine-mcp.git
cd nutrient-document-engine-mcp
docker-compose up -d- Add to Claude Desktop config:
{
"mcpServers": {
"nutrient-document-engine": {
"command": "npx",
"args": ["-y", "@nutrient-sdk/document-engine-mcp-server"],
"env": {
"DASHBOARD_USERNAME": "admin",
"DASHBOARD_PASSWORD": "password",
"DOCUMENT_ENGINE_BASE_URL": "http://localhost:5000",
"DOCUMENT_ENGINE_API_AUTH_TOKEN": "secret"
}
}
}
}- Restart Claude Desktop and access dashboard at http://localhost:5100/dashboard