dotbot vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
dotbot by andresharpe | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 50 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 45 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | PowerShell | TypeScript |
| Last commit | this month | this month |
dotbot · Summary
Zero-dependency MCP server for structured, auditable AI-assisted development in teams.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
dotbot · Use cases
- Team-based AI development with auditable trails for compliance and knowledge sharing
- Multi-step AI coding workflows with task dependencies and model selection per task
- Enterprise workflow and stack registry for standardizing AI-assisted development processes
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
dotbot · Install
Installation
- **Install dotbot globally**:
Install-Module Dotbot -Scope CurrentUser- **Initialize in your project**:
cd your-project
dotbot init
dotbot init -Workflow <workflow-name> -Stack <stack-name>- **Configure MCP Server** in Claude Desktop or similar:
{
"mcpServers": {
"dotbot": {
"command": "pwsh",
"args": ["-NoProfile", "-File", ".bot/systems/mcp/dotbot-mcp.ps1"]
}
}
}- **Start the web dashboard**:
.bot\go.ps1mcp-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"]
}
}
}