MCP Catalogs
Home

everything vs word-mcp-live

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

everything
by modelcontextprotocol
word-mcp-live
by ykarapazar
Stars★ 85,748★ 86
30d uses
Score7749
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

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

word-mcp-live · Summary

MCP server with 124 tools for Microsoft Word including live editing, tracked changes, and cross-platform functionality.

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

word-mcp-live · Use cases

  • Automated document generation and formatting with AI assistance
  • Collaborative document review with AI-managed tracked changes
  • Cross-platform document manipulation without opening Word interface

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

word-mcp-live · Install

Install the package:

pip install word-mcp-live

Add to your Claude Desktop configuration (claude_desktop_config.json):

{
  "mcpServers": {
    "word": {
      "command": "uvx",
      "args": ["word-mcp-live"],
      "env": {
        "MCP_AUTHOR": "Your Name",
        "MCP_AUTHOR_INITIALS": "YN"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.