mcp-server-chart vs mcp-for-argocd
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-for-argocd by argoproj-labs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 464 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
mcp-for-argocd · Summary
MCP server enabling AI assistants to interact with Argo CD applications through natural language.
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-for-argocd · Use cases
- AI-assisted Argo CD application management through natural language
- Integration of Argo CD operations into AI-powered development workflows
- Automated infrastructure management using conversational AI
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-for-argocd · Install
Installation
Prerequisites
- Node.js (v18 or higher recommended)
- Argo CD instance with API access
- Argo CD API token
Usage with Claude Desktop
- Create a
claude_desktop_config.jsonconfiguration file:
{
"mcpServers": {
"argocd-mcp": {
"command": "npx",
"args": [
"argocd-mcp@latest",
"stdio"
],
"env": {
"ARGOCD_BASE_URL": "<argocd_url>",
"ARGOCD_API_TOKEN": "<argocd_token>"
}
}
}
}- Configure Claude Desktop to use this configuration file in settings.
Usage with VSCode
- Create a
.vscode/mcp.jsonfile in your project:
{
"servers": {
"argocd-mcp-stdio": {
"type": "stdio",
"command": "npx",
"args": [
"argocd-mcp@latest",
"stdio"
],
"env": {
"ARGOCD_BASE_URL": "<argocd_url>",
"ARGOCD_API_TOKEN": "<argocd_token>"
}
}
}
}- Start a conversation with an AI assistant in VS Code that supports MCP.