mcp-server-chart vs podman-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | podman-mcp-server by manusa | |
|---|---|---|
| Stars | ★ 4,068 | ★ 73 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsOther |
| Language | TypeScript | Go |
| 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.
podman-mcp-server · Summary
A well-documented MCP server for managing Podman and Docker containers with comprehensive tool coverage.
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
podman-mcp-server · Use cases
- AI assistants managing Docker/Podman containers through natural language commands
- Automated deployment workflows using container runtime operations via MCP
- Development environments where AI needs to interact with local containers
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"]
}
}
}podman-mcp-server · Install
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"podman": {
"command": "npx",
"args": [
"-y",
"podman-mcp-server@latest"
]
}
}
}VS Code
Install the MCP server directly in VS Code or use:
code --add-mcp '{"name":"podman","command":"npx","args":["-y","podman-mcp-server@latest"]}'Goose CLI
Add to your config.yaml:
extensions:
podman:
command: npx
args:
- -y
- podman-mcp-server@latest