mcp-server-chart vs mcp-center
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-center by nautilus-ops | |
|---|---|---|
| Stars | ★ 4,068 | ★ 41 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsMonitoring |
| Language | TypeScript | Rust |
| Last commit | this month | 8 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-center · Summary
MCP Center is a centralized proxy service for managing and connecting multiple MCP servers with service discovery and authentication.
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-center · Use cases
- Managing multiple MCP servers in a Kubernetes cluster with unified service discovery
- Implementing consistent authentication across all MCP servers
- Monitoring and filtering tool parameters for traceability and debugging
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-center · Install
Installation
Using Docker
# 1. Pull the latest image
docker pull nautilusops/mcp-center:latest
# 2. Start the container
docker run -d \
--name mcp-center \
-p 5432:5432 \
-e MCP_ADMIN_TOKEN=your-custom-token \
-e POSTGRES_HOST=your-postgres-host \
-e POSTGRES_PORT=your-postgres-port \
-e POSTGRES_USERNAME=your-postgres-username \
-e POSTGRES_PASSWORD=your-postgres-password \
-e POSTGRES_DATABASE=your-postgres-database \
nautilusops/mcp-center:latestFrom Source
# Clone the repository
git clone https://github.com/nautilus-ops/mcp-center.git
cd mcp-center
# Build the project
cargo build --release
# Set environments
export MCP_ADMIN_TOKEN=your-custom-token
export POSTGRES_HOST=your-postgres-host
export POSTGRES_PORT=your-postgres-port
export POSTGRES_USERNAME=your-postgres-username
export POSTGRES_PASSWORD=your-postgres-password
export POSTGRES_DATABASE=your-postgres-database
# Run the application
./target/release/mcp-center run --config bootstrap.tomlClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mcp-center": {
"command": "mcp-center",
"args": ["proxy"]
}
}
}