mcp-server-chart vs claude-mcp-scheduler
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | claude-mcp-scheduler by tonybentley | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30d uses | 10,239 | — |
| Score | 84 | 39 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
claude-mcp-scheduler · Summary
A cron-based scheduler that uses Claude API with MCP servers for tool calls in scheduled AI tasks.
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
claude-mcp-scheduler · Use cases
- Running automated AI reports on a schedule
- Processing data files at regular intervals
- Integrating AI capabilities into CI/CD pipelines
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"]
}
}
}claude-mcp-scheduler · Install
Installation
- Clone the repository:
git clone https://github.com/tonybentley/claude-mcp-scheduler.git
cd claude-mcp-scheduler- Install dependencies:
npm install- Create a
.envfile with your Anthropic API key:
ANTHROPIC_API_KEY=your-api-key-here- Copy the example configuration:
cp config/config.example.json config/config.jsonTo use with Claude Desktop, add the following to your Claude Desktop configuration:
{
"mcpServers": {
"claude-mcp-scheduler": {
"command": "node",
"args": ["path/to/claude-mcp-scheduler/dist/index.js"]
}
}
}