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.
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:
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 READMEread_docxread_docx(clean_view: boolean) -> DocumentReads a .docx file and returns its content as CriticMarkup with optional clean view
process_document_batchprocess_document_batch(changes: List[Change]) -> ResultApplies a batch of changes to a document, including text modifications and track changes management
finalize_documentfinalize_document(protection_mode: string) -> DocumentPrepares a document for distribution by scrubbing metadata and applying protection
Comparable tools
Installation
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"]
}
}
}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
Last updated · Auto-generated from public README + GitHub signals.