mcp-server-chart vs stash-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | stash-mcp by diomonogatari | |
|---|---|---|
| Stars | ★ 4,068 | ★ 4 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityOps & Infra |
| Language | TypeScript | C# |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
stash-mcp · Summary
A production-ready MCP server for Atlassian Bitbucket Server with 40 tools and robust resilience features.
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
stash-mcp · Use cases
- Automating code review workflows with AI assistants that can analyze diffs and suggest improvements
- Repository exploration and codebase analysis for onboarding new team members
- Bug investigation by searching through commit history and code changes
- CI/CD status monitoring and integration with AI assistants for build notifications
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"]
}
}
}stash-mcp · Install
Docker Installation
- Install Docker Desktop
- Set up environment variables:
``bash export BITBUCKET_URL="https://your-stash-server.com/" export BITBUCKET_TOKEN="your_personal_access_token" ``
- Add to VS Code MCP configuration:
``json { "servers": { "stash-bitbucket": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "BITBUCKET_URL", "-e", "BITBUCKET_TOKEN", "diomonogatari/stash-mcp:latest" ], "env": { "BITBUCKET_URL": "https://your-stash-server.com/", "BITBUCKET_TOKEN": "your_personal_access_token" }, "type": "stdio" } } } ``