MCP Catalogs
Home

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
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis 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

  1. Download the latest Adeu.mcpb file from the [GitHub Releases](https://github.com/dealfluence/adeu/releases) page.
  2. Open Claude Desktop and navigate to **Settings > Extensions**.
  3. Click **Advanced settings** and find the Extension Developer section.
  4. Click **Install Extension...**, select the downloaded .mcpb file, 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.

Comparison generated from public README + GitHub signals. Last updated automatically.