MCP Catalogs
Home

adeu vs everything

Side-by-side comparison to help you pick between these two MCP servers.

adeu
by dealfluence
everything
by modelcontextprotocol
Stars★ 77★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.