mcp-server-chart vs adeu
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | adeu by dealfluence | |
|---|---|---|
| Stars | ★ 4,068 | ★ 77 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
adeu · Summary
Adeu is an MCP server that translates between DOCX and Markdown files, enabling AI to safely edit documents with track changes.
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
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
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"]
}
}
}adeu · Install
Installation
Adeu can be installed directly into AI assistants as an MCP server:
Claude Desktop
- Download the latest
Adeu.mcpbfile from the [GitHub Releases](https://github.com/dealfluence/adeu/releases) page. - Open Claude Desktop and navigate to **Settings > Extensions**.
- Click **Advanced settings** and find the Extension Developer section.
- Click **Install Extension...**, select the downloaded
.mcpbfile, 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"]
}
}
}