mcp-server-chart vs BitbucketMcpServers
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | BitbucketMcpServers by peakflames | |
|---|---|---|
| Stars | ★ 4,068 | ★ 3 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsGitHubProductivity |
| 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.
BitbucketMcpServers · Summary
C# implementation of MCP server for Bitbucket integration with pull request operations.
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
BitbucketMcpServers · Use cases
- Automate Bitbucket pull request management through MCP-enabled AI assistants
- Integrate Bitbucket operations into AI-powered development workflows
- Provide AI assistants with access to Bitbucket repository information
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"]
}
}
}BitbucketMcpServers · Install
Installation
Via Docker (Recommended)
- Pull the Docker image:
docker pull peakflames/bitbucket-remote-mcp-server- Create an
appsettings.jsonfile with your Bitbucket account name:
{
"BitbucketCloudConfig": {
"AccountName": "your-workspace-name"
}
}- Run with OAuth 2.0 credentials:
docker run -d \
--name bitbucket-mcp-server \
-p 8080:8080 \
-e BITBUCKET_MCP_CONSUMER_KEY="your_consumer_key" \
-e BITBUCKET_MCP_SECRET_KEY="your_secret_key" \
-v $(pwd)/appsettings.json:/app/appsettings.json \
peakflames/bitbucket-remote-mcp-serverClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"Bitbucket": {
"command": "docker",
"args": ["run", "--rm", "-p", "8080:8080", "peakflames/bitbucket-remote-mcp-server"],
"transportType": "sse",
"url": "http://localhost:8080/sse"
}
}
}