mcp-server-chart vs MCP-BOE
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCP-BOE by ComputingVictor | |
|---|---|---|
| Stars | ★ 4,068 | ★ 39 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsgovernmentKnowledge Graph |
| 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.
MCP-BOE · Summary
MCP server providing access to Spanish BOE legislation, daily summaries, and official documents via MCP and REST API.
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
MCP-BOE · Use cases
- Legal research and analysis by querying consolidated Spanish legislation
- Tracking daily government publications and changes in regulations
- Comparing and analyzing relationships between different legal norms
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"]
}
}
}MCP-BOE · Install
Installation
**Option 1: Using uvx (Recommended)**
uvx --from git+https://github.com/ComputingVictor/MCP-BOE.git mcp-boe**Option 2: From source with uv**
git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
uv run python -m mcp_boe.server**Option 3: With pip**
git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
pip install -e .Configuration with Claude Desktop
Add to your configuration:
{
"mcpServers": {
"mcp-boe": {
"command": "uvx",
"args": ["--from", "git+https://github.com/ComputingVictor/MCP-BOE.git", "mcp-boe"]
}
}
}