mcp-server-chart vs teamcity-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | teamcity-mcp by Daghis | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
teamcity-mcp · Summary
MCP server for JetBrains TeamCity that provides 87 tools to control builds, tests, agents and configurations from AI coding 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
teamcity-mcp · Use cases
- Trigger and monitor builds directly from AI coding assistants
- Create and manage build configurations programmatically
- Analyze test failures and build logs without leaving the development environment
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"]
}
}
}teamcity-mcp · Install
Quick Installation
# Using npx with environment variables
TEAMCITY_URL="https://teamcity.example.com" \
TEAMCITY_TOKEN="<your_token>" \
MCP_MODE=dev \
npx -y @daghis/teamcity-mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"teamcity": {
"command": "npx",
"args": [
"-y",
"@daghis/teamcity-mcp",
"--url",
"https://teamcity.example.com",
"--token",
"tc_<your_token>"
]
}
}
}