mcp-server-chart vs word-mcp-live
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | word-mcp-live by ykarapazar | |
|---|---|---|
| Stars | ★ 4,068 | ★ 86 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
word-mcp-live · Summary
MCP server with 124 tools for Microsoft Word including live editing, tracked changes, and cross-platform functionality.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}word-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"
}
}
}
}