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 | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 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-everythingword-mcp-live · Install
Install the package:
pip install word-mcp-liveAdd 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"
}
}
}
}