minibridge vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
minibridge by acuvity | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 54 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 45 | 84 |
| Official | — | — |
| Categories | SecurityDeveloper ToolsOps & Infra | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | 1 mo ago | this month |
minibridge · Summary
Minibridge is a secure production bridge for MCP servers with policy enforcement, authentication, and monitoring capabilities.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
minibridge · Use cases
- Production deployment of MCP servers with enhanced security and monitoring
- Organizations needing authentication and content filtering for MCP tool access
- Teams requiring SBOM generation and integrity validation for MCP tools
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
minibridge · Install
Minibridge can be installed through multiple methods:
**Homebrew (macOS)**
brew tap acuvity/tap
brew install minibridge**AUR (Arch Linux)**
yay -S minibridge**Go**
go install go.acuvity.ai/minibridge@latest**Binary** Download prebuilt binaries from the [release page](https://github.com/acuvity/minibridge/releases/tag/v0.6.2)
**Claude Desktop Configuration**
{
"mcpServers": {
"fetch": {
"command": "minibridge",
"args": ["aio", "--", "uvx", "mcp-server-fetch"]
}
}
}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"]
}
}
}