Skip to main content
mcpSource-backedReview first Safety Privacy

Adeu MCP Server for Claude

Adeu MCP server and SDKs translate DOCX files to token-efficient Markdown with CriticMarkup, apply safe Track Changes edits, and optionally integrate with live Microsoft Word on Windows.

HarnessClaude CodeCodexCursorClaude Desktop
Review first review before installing

Open the source and read safety notes before installing.

Safety notes

  • `process_document_batch` can modify DOCX content and apply Track Changes when edits pass validation.
  • `finalize_document` can strip metadata and lock documents; review output before external distribution.
  • Live Word integration edits the active document in memory; save backups before batch operations.
  • Adeu Cloud email workflows fetch external attachments; treat counterparty documents as untrusted input.

Privacy notes

  • Local Adeu tools process documents on your machine and do not phone home with file contents by default.
  • Document text sent to your LLM provider is subject to that provider's data handling policies.
  • Optional Adeu Cloud routes large validation or email workflows through Adeu servers under separate terms.

Prerequisites

  • Node.js 18+ for the `@adeu/mcp-server` npm package, or Python with uv for the `adeu-server` backend.
  • Local access to `.docx` files you intend to read or redline; live Word editing requires Windows with Microsoft Word installed.
  • Claude Desktop, Claude Code, Cursor, or another MCP client with stdio transport support.
  • Optional Adeu Cloud account only if you enable email fetch or advanced validation workflows.

Schema details

Install type
cli
Reading time
4 min
Difficulty score
40
Troubleshooting
Yes
Breaking changes
No
Source repository stats
Scope
Source repo
Collection metadata
Estimated setup
10 minutes
Difficulty
intermediate
Tool listing metadata
Full copyable content
{
  "mcpServers": {
    "adeu": {
      "command": "npx",
      "args": ["-y", "@adeu/mcp-server"]
    }
  }
}

About this resource

Overview

Adeu is a docx ↔ LLM translator: an MCP server and SDK that exposes Microsoft Word documents as token-efficient Markdown with CriticMarkup while preserving underlying OpenXML formatting. Agents read documents safely, validate ambiguous edits, and apply native Track Changes instead of destructive rewrites.

Source code and installation instructions live in the dealfluence/adeu repository.

Features

  • read_docx with optional MCP Apps UI for interactive Markdown preview.
  • process_document_batch for modify, accept, reject, and comment operations by change ID.
  • finalize_document to scrub metadata and prepare documents for distribution.
  • Strict validation that blocks ambiguous text matches before touching files.
  • Node.js (@adeu/mcp-server) and Python (adeu-server) stdio backends.
  • Optional live Microsoft Word copilot mode on Windows via the Python server.

Use Cases

  • Redline a vendor MSA governing-law clause with tracked changes and reviewer comments.
  • Extract clean Markdown from a DOCX contract for RAG indexing.
  • Accept or reject existing Track Changes in bulk after legal review.
  • Sanitize author metadata before sending a redlined agreement externally.
  • Edit the active Word document during a live review session on Windows.

Installation

Claude (Connectors)

  1. Choose the Node.js server (npx -y @adeu/mcp-server) or Python server (uvx --from adeu adeu-server) for live Word.
  2. Add the stdio command to Claude Desktop, Claude Code, or Cursor MCP settings.
  3. Place target .docx files in a path readable by the MCP server process.
  4. Invoke read_docx before proposing edits, then commit with process_document_batch.

Claude Code

claude mcp add adeu -- npx -y @adeu/mcp-server
claude mcp list

Other MCP clients

Add the connector using the JSON configuration below in your MCP client settings.

Configuration

{
  "mcpServers": {
    "adeu": {
      "command": "npx",
      "args": ["-y", "@adeu/mcp-server"]
    }
  }
}

For authenticated setups:

{
  "mcpServers": {
    "adeu": {
      "command": "uvx",
      "args": ["--from", "adeu", "adeu-server"],
      "env": {
        "ADEU_CLOUD_API_KEY": "YOUR_OPTIONAL_CLOUD_KEY"
      }
    }
  }
}

Switch to the Python uvx backend when you need live Microsoft Word integration on Windows.

Examples

Read contract

Read contract.docx with Adeu and summarise the indemnification section.

Apply redlines

Change 'State of New York' to 'State of Delaware' with a Track Changes comment explaining the governing-law update.

Finalize for send

Finalize the redlined agreement: scrub internal metadata and lock the document read-only.

Security

  • Review every batch edit before applying; validation blocks ambiguous matches but not all semantic errors.
  • Keep confidential agreements on local Adeu unless Adeu Cloud is explicitly approved by legal.
  • Do not enable email-fetch workflows on mailboxes containing privileged communications without review.

Troubleshooting

Ambiguous match rejected

Narrow the target_text snippet or provide more surrounding context in the modify operation.

Live Word unavailable

Install the Python adeu-server backend on Windows with Microsoft Word running.

MCP Apps UI blank

Update to the latest @adeu/mcp-server release and restart the MCP client.

Cloud validation timeout

Large multi-document jobs may require Adeu Cloud; verify your optional cloud API key.

Duplicate Check

No existing Adeu or dealfluence/adeu entry was found in content/mcp/. This entry is separate from generic filesystem or PDF MCP servers because it specialises in DOCX Track Changes safety.

Source citations

Add this badge to your README

Show that Adeu MCP Server for Claude is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.

Listed on HeyClaude
[![Listed on HeyClaude](https://heyclau.de/badge/mcp/ai-adeu-adeu-mcp-server.svg)](https://heyclau.de/entry/mcp/ai-adeu-adeu-mcp-server)

How it compares

Adeu MCP Server for Claude side by side with 3 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.

FieldAdeu MCP Server for Claude

Adeu MCP server and SDKs translate DOCX files to token-efficient Markdown with CriticMarkup, apply safe Track Changes edits, and optionally integrate with live Microsoft Word on Windows.

Open dossier
Office Word MCP Server

MCP server for creating, reading, formatting, analyzing, converting, and manipulating Microsoft Word documents.

Open dossier
AFFiNE MCP Server

MCP server for connecting Claude to AFFiNE Cloud or self-hosted AFFiNE workspaces, documents, databases, comments, collections, folders, tags, notifications, blobs, access tokens, semantic page composition, templates, edgeless canvas data, and workspace organization workflows over stdio or HTTP.

Open dossier
AgentTrust MCP Server for Claude

AgentTrust stdio MCP server giving AI agents verified identity with email, instant messaging, and cloud file storage across 19 Ed25519-signed tools.

Open dossier
Trust
Install riskReview firstReview firstReview firstReview first
Notes Safety Privacy Safety Privacy Safety Privacy Safety Privacy
Categorymcpmcpmcpmcp
Sourcesource-backedsource-backedsource-backedsource-backed
AuthorAdeuGongRzheDAWNCR0WAgentTrust
Added2026-06-142026-06-052026-06-062026-06-14
Platforms
Claude CodeCodexCursorClaude Desktop
Claude CodeClaude Desktop
Claude CodeClaude Desktop
Claude CodeClaude Desktop
Source repo
Safety notes`process_document_batch` can modify DOCX content and apply Track Changes when edits pass validation. `finalize_document` can strip metadata and lock documents; review output before external distribution. Live Word integration edits the active document in memory; save backups before batch operations. Adeu Cloud email workflows fetch external attachments; treat counterparty documents as untrusted input.Office Word MCP Server can create, copy, merge, convert, protect, sign, and modify Word documents. Editing tools can alter paragraphs, tables, lists, images, footnotes, endnotes, formatting, styles, comments, and document properties. Review generated documents before sharing, signing, converting to PDF, or using them as legal, financial, HR, policy, or customer-facing material. Keep backups before running broad search-and-replace, merge, delete, protection, or formatting operations on important documents.The full tool surface can create, update, publish, revoke, move, replace, and delete AFFiNE workspaces, documents, folders, collections, comments, database rows, blobs, surface elements, tags, and access tokens. Start with AFFINE_TOOL_PROFILE=read_only or disable groups such as destructive, admin, blobs, users, access_tokens, docs.database, or write when the assistant only needs discovery or reading. HTTP mode exposes MCP endpoints and must be protected with bearer or OAuth authentication, HTTPS, allowed origins, and deployment-level access controls. AFFiNE Cloud requires API tokens for MCP usage; avoid trying to automate email/password login against Cloud deployments. Cookie and password-based auth can grant broad account access and should be avoided for unattended or shared deployments.Email tools can send outbound mail from your `@agenttrust.ai` address. Messaging tools can contact other agents and escalate to humans via HITL flows. Drive tools upload, download, and delete files—confirm destructive operations. Ed25519 signing keys are generated locally; back up `~/.agenttrust` before rotation.
Privacy notesLocal Adeu tools process documents on your machine and do not phone home with file contents by default. Document text sent to your LLM provider is subject to that provider's data handling policies. Optional Adeu Cloud routes large validation or email workflows through Adeu servers under separate terms.Word documents can contain personal data, comments, tracked decisions, hidden metadata, embedded images, confidential business text, signatures, and restricted-editing sections. Document text, filenames, comments, metadata, prompts, tool arguments, generated outputs, and conversion logs may be visible to the MCP client and model provider. Review generated files and extracted comments before sharing logs, diffs, or documents publicly.Workspaces, document titles, document bodies, comments, tags, database schemas, database rows, edgeless canvas data, notifications, user profiles, access-token metadata, blobs, and exported markdown can be sent to the MCP client and model. API tokens, cookies, passwords, bearer tokens, OAuth config, and saved config files should be treated as secrets and kept out of prompts, logs, screenshots, issues, and committed MCP config. Generated or modified documents can persist in AFFiNE and may become visible to collaborators depending on workspace permissions and sharing state. Blob upload, cleanup, export, and publish/revoke workflows can expose files, generated content, or collaboration state beyond the current prompt.Email bodies, attachments, messages, and uploaded files are processed by AgentTrust. Signing keys and API keys are stored locally with 0600 permissions but still require host protection. Outbound email from address is enforced server-side to your agent's `@agenttrust.ai` identity.
Prerequisites
  • Node.js 18+ for the `@adeu/mcp-server` npm package, or Python with uv for the `adeu-server` backend.
  • Local access to `.docx` files you intend to read or redline; live Word editing requires Windows with Microsoft Word installed.
  • Claude Desktop, Claude Code, Cursor, or another MCP client with stdio transport support.
  • Optional Adeu Cloud account only if you enable email fetch or advanced validation workflows.
  • Python 3.11 or newer available to the MCP client runtime.
  • uvx available for package execution.
  • Word documents or a working directory where generated documents can be created.
  • Review rules for documents the agent may overwrite, merge, convert, protect, or sign.
  • Node.js and npm for installing the affine-mcp-server package.
  • AFFiNE Cloud API token or approved self-hosted AFFiNE credentials.
  • AFFiNE base URL for the Cloud or self-hosted deployment.
  • Clear workspace scope and least-privilege tool profile before enabling write, admin, destructive, blob, or access-token tools.
  • AgentTrust account with a registered agent and API key (`atk_...`).
  • Node.js for the `@agenttrust/mcp-server` npm package.
  • Claude Desktop, Claude Code, Cursor, or another MCP client with stdio transport.
  • Optional interactive setup via `npx @agenttrust/mcp-server init` for Ed25519 signing keys.
Install
claude mcp add adeu -- npx -y @adeu/mcp-server
uvx --from office-word-mcp-server word_mcp_server
npm i -g affine-mcp-server
claude mcp add agenttrust -- npx -y @agenttrust/mcp-server
Config
{
  "mcpServers": {
    "adeu": {
      "command": "uvx",
      "args": ["--from", "adeu", "adeu-server"],
      "env": {
        "ADEU_CLOUD_API_KEY": "YOUR_OPTIONAL_CLOUD_KEY"
      }
    }
  }
}
{
  "mcpServers": {
    "word-document-server": {
      "command": "uvx",
      "args": ["--from", "office-word-mcp-server", "word_mcp_server"]
    }
  }
}
{
  "mcpServers": {
    "affine": {
      "command": "affine-mcp",
      "env": {
        "AFFINE_BASE_URL": "<affine-base-url>",
        "AFFINE_API_TOKEN": "<affine-api-token>",
        "AFFINE_TOOL_PROFILE": "read_only"
      }
    }
  }
}
{
  "mcpServers": {
    "agenttrust": {
      "command": "npx",
      "args": ["-y", "@agenttrust/mcp-server"],
      "env": {
        "AGENTTRUST_API_KEY": "atk_your_key_here",
        "AGENTTRUST_ENDPOINT": "https://agenttrust.ai"
      }
    }
  }
}
Citations
ClaimUnclaimedUnclaimedUnclaimedUnclaimed

Signals

Loading live community signals…

More like this, weekly

A short, calm digest of reviewed Claude resources. Unsubscribe any time.