hwpx-mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
hwpx-mcp-server by airmang | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 57 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 48 | 84 |
| Official | — | — |
| Categories | File SystemProductivityAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
hwpx-mcp-server · Summary
MCP server for AI agents to read, edit, inspect, and validate local HWPX documents without Hangul word processor.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
hwpx-mcp-server · Use cases
- Processing Korean government or school documents in automated workflows
- Converting HWPX documents to markdown or HTML for web publishing
- Batch text replacement across multiple HWPX files
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
hwpx-mcp-server · Install
Installation
Using uv:
uvx hwpx-mcp-serverOr with pip:
pip install hwpx-mcp-server
hwpx-mcp-serverClaude Desktop Setup
Add to claude_desktop_config.json:
{
"mcpServers": {
"hwpx": {
"command": "uvx",
"args": ["hwpx-mcp-server"]
}
}
}Environment Variables
HWPX_MCP_MAX_CHARS: Maximum text length (default: 10000)HWPX_MCP_AUTOBACKUP: Create backup before edit (default: 1)HWPX_MCP_ADVANCED: Enable advanced tools (default: 0)
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"]
}
}
}