mcp-server-chart vs bluerock
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | bluerock by bluerock-io | |
|---|---|---|
| Stars | ★ 4,068 | ★ 29 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsMonitoring |
| 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.
bluerock · Summary
BlueRock provides runtime visibility for Python MCP servers with zero code changes, monitoring tool calls, sessions, imports and subprocess execution as structured NDJSON.
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
bluerock · Use cases
- Security monitoring for MCP servers in production environments
- Audit tool usage and resource access patterns in AI applications
- Detect suspicious module imports or subprocess execution in Python MCP servers
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"]
}
}
}bluerock · Install
# Install from PyPI
pip install bluerock[oss]
# Create configuration
echo '{"enable": true, "mcp": true}' > ~/.bluerock/bluerock-oss.json
# Run your Python script with BlueRock
python -m bluepython --oss your_script.pyFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"bluerock": {
"command": "python",
"args": ["-m", "bluepython", "--oss"]
}
}
}