mcp-server-chart vs mirobody
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mirobody by thetahealth | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,042 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolshealthProductivity |
| Language | TypeScript | Python |
| 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.
mirobody · Summary
A personal data platform bridging health, finance data with AI via MCP servers and Claude Agent Skills.
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
mirobody · Use cases
- Personal health analysis with data from multiple wearables and Apple Health
- Finance management by creating custom AI tools for personal financial data
- Building domain-specific agents that leverage personal data via MCP tools
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"]
}
}
}mirobody · Install
Quick Start with Docker
git clone https://github.com/thetahealth/mirobody.git
cd mirobody
./deploy.shThis will set up a complete environment with Postgres, Redis, and Mirobody.
Use as MCP Server
Set MCP_PUBLIC_URL to expose your MCP server over HTTPS for remote access.
Claude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mirobody": {
"command": "python",
"args": ["-m", "mirobody.mcp.server"],
"env": {"MCP_CONFIG_PATH": "/path/to/config"}
}
}
}