mcp-server-chart vs openedu-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | openedu-mcp by Cicatriiz | |
|---|---|---|
| Stars | ★ 4,068 | ★ 8 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | educationAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
openedu-mcp · Summary
OpenEdu MCP Server provides educational resources and curriculum planning tools integrating OpenLibrary, Wikipedia, Dictionary, and arXiv APIs with grade-level filtering.
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
openedu-mcp · Use cases
- Teachers creating lesson plans with age-appropriate resources from multiple educational sources
- Students finding research materials and explanations tailored to their grade level
- Educational developers creating applications that need curriculum-aligned content
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"]
}
}
}openedu-mcp · Install
Installation
- **Clone the repository:**
git clone https://github.com/Cicatriiz/openedu-mcp.git
cd openedu-mcp- **Install dependencies:**
pip install -r requirements.txt- **Set up configuration:**
cp .env.example .env
# Edit .env with your preferred settings if needed- **Run the server:**
python -m src.mainClaude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"openedu": {
"command": "python",
"args": ["-m", "src.main"],
"cwd": "${your_project_path}/openedu-mcp"
}
}
}