mcp-server-chart vs intervals-icu-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | intervals-icu-mcp by eddmann | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityhealthAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
intervals-icu-mcp · Summary
Comprehensive MCP server for Intervals.icu integration with 48 tools for training data, wellness metrics, and performance analysis.
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
intervals-icu-mcp · Use cases
- Analyze cycling or running performance metrics and training data
- Plan and manage workout schedules and training events
- Track wellness metrics including recovery, sleep, and HRV
- Manage cycling and running gear with maintenance tracking
- Review historical activities and performance curves
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"]
}
}
}intervals-icu-mcp · Install
Installation
Prerequisites
- Python 3.11+ and [uv](https://github.com/astral-sh/uv), OR
- Docker
Authentication Setup
- Get your Intervals.icu API key from https://intervals.icu/settings
- Note your Athlete ID from your profile URL (format:
i123456)
Option 1: Using UV
cd intervals-icu-mcp
uv sync
# Configure credentials
uv run intervals-icu-mcp-authOption 2: Using Docker
docker build -t intervals-icu-mcp .
# Create and configure env file
touch intervals-icu-mcp.env
docker run -it --rm -v "$(pwd)/intervals-icu-mcp.env:/app/.env" intervals-icu-mcp:latest python -m intervals_icu_mcp.scripts.setup_authClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"intervals-icu": {
"command": "uv",
"args": [
"run",
"--directory",
"/ABSOLUTE/PATH/TO/intervals-icu-mcp",
"intervals-icu-mcp"
]
}
}
}