mcp-server-chart vs korean-contracts
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | korean-contracts by kimlawtech | |
|---|---|---|
| Stars | ★ 4,068 | ★ 42 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | Go Template |
| 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.
korean-contracts · Summary
MCP server for generating Korean legal contracts with privacy protection features.
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
korean-contracts · Use cases
- HR professionals and business owners need to create compliant employment contracts in Korea
- Freelancers and contractors require legally sound agreement templates
- Small business owners need to review existing contracts against current regulations
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"]
}
}
}korean-contracts · Install
Install via automated scripts:
# macOS / Linux
git clone https://github.com/kimlawtech/korean-contracts
cd korean-contracts
bash install.sh
# Windows (PowerShell)
git clone https://github.com/kimlawtech/korean-contracts
cd korean-contracts
powershell -ExecutionPolicy Bypass -File install.ps1The install script automatically:
- Creates symlinks to skills in
~/.claude/skills/ - Installs Python dependencies (
mcp,python-docx) - Registers the MCP server in Claude Desktop config:
{
"mcpServers": {
"korean-contracts": {
"command": "python3",
"args": ["/path/to/korean-contracts/mcp-server/server.py"]
}
}
}Restart Claude Desktop after installation.