mcp-server-chart vs strava-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | strava-mcp by kw510 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 26 |
| 30d uses | 10,239 | — |
| Score | 84 | 35 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsfitnessAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
strava-mcp · Summary
MCP server with Strava OAuth integration for secure authentication and tool access.
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
strava-mcp · Use cases
- Integrate Strava fitness data with AI assistants for personalized training insights
- Enable MCP clients to securely access user's activity history and performance metrics
- Build applications that combine AI analysis with fitness tracking data
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"]
}
}
}strava-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/kw510/strava-mcp.git
cd strava-mcp
npm install- Set up Strava API credentials
- Configure Cloudflare KV namespace:
wrangler kv:namespace create "OAUTH_KV"- Deploy to Cloudflare:
wrangler deployClaude Desktop Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"strava": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp-strava-oauth.<your-subdomain>.workers.dev/sse"
]
}
}
}