MCP Catalogs
Home

adeu

by dealfluence·77·Score 48

Adeu is an MCP server that translates between DOCX and Markdown files, enabling AI to safely edit documents with track changes.

developer-toolsai-llmproductivity
11
Forks
2
Open issues
this month
Last commit
2d ago
Indexed

Overview

Adeu acts as a Virtual DOM for Microsoft Word, providing a two-way abstraction layer that allows AI agents to edit document text without destroying underlying formatting or complex OpenXML. It translates .docx files into LLM-friendly CriticMarkup with a semantic appendix, processes AI edits as safe atomic transactions, and translates them into native Word Track Changes. The tool acts as an intelligent proxy that validates changes before applying them, ensuring document integrity is maintained throughout the editing process.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Legal document review and redlining by AI agents
you:Collaborative document editing with track changes preservation
you:Batch processing and sanitization of Word documents before distribution
you:What file formats does Adeu support?
you:Does Adeu preserve document formatting?

When to choose this

Choose Adeu when you need AI agents to review or edit legal documents while preserving exact formatting and creating proper tracked changes.

When NOT to choose this

Don't choose Adeu if you need to work with document formats other than DOCX or if you prefer a fully open-source solution without cloud dependencies.

Tools this server exposes

3 tools extracted from the README
  • read_docxread_docx(clean_view: boolean) -> Document

    Reads a .docx file and returns its content as CriticMarkup with optional clean view

  • process_document_batchprocess_document_batch(changes: List[Change]) -> Result

    Applies a batch of changes to a document, including text modifications and track changes management

  • finalize_documentfinalize_document(protection_mode: string) -> Document

    Prepares a document for distribution by scrubbing metadata and applying protection

Comparable tools

docx-to-markdownpython-docxmammoth.js

Installation

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"]
    }
  }
}

FAQ

What file formats does Adeu support?
Adeu primarily works with Microsoft Word .docx files, converting them to and from CriticMarkup (a Markdown extension) for AI processing.
Does Adeu preserve document formatting?
Yes, Adeu maintains all existing layouts, fonts, and margin comments by handling the complex XML under the hood while allowing AI agents to work with text semantics.

Compare adeu with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.