mcp-server-chart vs gitlab-mr-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | gitlab-mr-mcp by kopfrechner | |
|---|---|---|
| Stars | ★ 4,068 | ★ 89 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsGitHubProductivity |
| Language | TypeScript | JavaScript |
| 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.
gitlab-mr-mcp · Summary
GitLab MR MCP server allows AI agents to interact with GitLab repositories to manage merge requests and issues.
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
gitlab-mr-mcp · Use cases
- AI-powered code review automation where an AI agent analyzes merge requests and provides automated feedback
- Project management assistance through AI that helps track and manage issues across multiple GitLab projects
- Development workflow integration where AI tools can directly interact with GitLab to streamline development processes
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"]
}
}
}gitlab-mr-mcp · Install
Installation
Using Smithery (Recommended)
npx -y @smithery/cli@latest install @kopfrechner/gitlab-mr-mcp --client claude --config '{"gitlabMrMcpToken":"YOUR_GITLAB_TOKEN", "gitlabMrMcpHost": "YOUR_GITLAB_HOST"}'Manual Installation
- Clone the repository:
git clone https://github.com/kopfrechner/gitlab-mr-mcp.git - Install dependencies:
npm install - Configure your MCP client (e.g., Claude Desktop) with:
{
"mcpServers": {
"gitlab-mr-mcp": {
"command": "node",
"args": ["/path/to/gitlab-mr-mcp/index.js"],
"env": {
"MR_MCP_GITLAB_TOKEN": "your_gitlab_token",
"MR_MCP_GITLAB_HOST": "your_gitlab_host"
}
}
}
}