adeu vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
adeu by dealfluence | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 77 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
adeu · Summary
Adeu is an MCP server that translates between DOCX and Markdown files, enabling AI to safely edit documents with track changes.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
adeu · Use cases
- Legal document review and redlining by AI agents
- Collaborative document editing with track changes preservation
- Batch processing and sanitization of Word documents before distribution
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
adeu · Install
Installation
Adeu can be installed directly into AI assistants as an MCP server:
Claude Desktop
- Download the latest
Adeu.mcpbfile from the [GitHub Releases](https://github.com/dealfluence/adeu/releases) page. - Open Claude Desktop and navigate to **Settings > Extensions**.
- Click **Advanced settings** and find the Extension Developer section.
- Click **Install Extension...**, select the downloaded
.mcpbfile, and follow the prompts.
Other MCP Clients
**Node.js:**
{
"mcpServers": {
"adeu": {
"command": "npx",
"args": ["-y", "@adeu/mcp-server"]
}
}
}**Python:**
{
"mcpServers": {
"adeu": {
"command": "uvx",
"args": ["--from", "adeu", "adeu-server"]
}
}
}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.