mcp-server-chart vs mcp-jenkins
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-jenkins by lanbaoshen | |
|---|---|---|
| Stars | ★ 4,068 | ★ 120 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraProductivity |
| 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.
mcp-jenkins · Summary
MCP server for Jenkins integration, providing tools to interact with Jenkins CI/CD through AI assistants.
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-jenkins · Use cases
- AI assistant triggering Jenkins builds with custom parameters
- Automating Jenkins infrastructure management through natural language
- Retrieving build logs, artifacts, and test reports for analysis
- Monitoring Jenkins builds and queue status via AI 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"]
}
}
}mcp-jenkins · Install
Installation
Using pip:
pip install mcp-jenkins
mcp-jenkinsUsing uv (recommended):
pip install uv
uvx mcp-jenkinsDocker:
docker pull ghcr.io/lanbaoshen/mcp-jenkins:latest
docker run -p 9887:9887 --rm ghcr.io/lanbaoshen/mcp-jenkins:latest --transport streamable-httpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"jenkins": {
"command": "uvx",
"args": ["mcp-jenkins", "--jenkins-url=YOUR_JENKINS_URL", "--jenkins-username=YOUR_USERNAME", "--jenkins-password=YOUR_TOKEN"]
}
}
}