mcp-server-chart vs jenkins-mcp-enterprise
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | jenkins-mcp-enterprise by Jordan-Jarvis | |
|---|---|---|
| Stars | ★ 4,068 | ★ 28 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraMonitoring |
| 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.
jenkins-mcp-enterprise · Summary
Advanced Jenkins MCP server with enterprise features for multi-instance management and AI-powered build diagnostics.
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
jenkins-mcp-enterprise · Use cases
- Diagnose complex build failures across multiple Jenkins instances with AI-powered analysis
- Search and analyze logs across builds using semantic search when vector search is enabled
- Manage and configure jobs across different Jenkins instances through a unified interface
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"]
}
}
}jenkins-mcp-enterprise · Install
Installation
Prerequisites
- Python 3.10+
- Jenkins API access
- Jenkins username and API token
- Docker and Docker Compose if you want container deployment
- Qdrant if you want
semantic_search
Install from Source
git clone https://github.com/Jordan-Jarvis/jenkins-mcp-enterprise
cd jenkins-mcp-enterprise
python3 -m pip install -e .Docker and Compose
cp config/mcp-config.example.yml config/mcp-config.yml
./start-jenkins_mcp_enterprise.shStart the Server
jenkins_mcp_enterprise --config config/mcp-config.ymlClaude Desktop Configuration
Add to ~/.claude_desktop_config.json:
{
"mcpServers": {
"jenkins": {
"command": "jenkins_mcp_enterprise",
"args": ["--config", "config/mcp-config.yml"]
}
}
}