mcp-server-chart vs student-services-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | student-services-mcp by EdyVision | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolseducationProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 8 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
student-services-mcp · Summary
A FastAPI-based MCP server for student services management with academic planning, financial aid, and dropout risk prediction.
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
student-services-mcp · Use cases
- Educational institutions managing student records and academic planning
- Administrators analyzing dropout risks and identifying at-risk students
- Financial aid offices determining student eligibility
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"]
}
}
}student-services-mcp · Install
Installation
Prerequisites
- Python 3.13+
- [uv](https://github.com/astral-sh/uv) - A fast Python package installer
- [Docker](https://www.docker.com/) (optional)
Local Installation
- Clone the repository:
git clone https://github.com/edyvision/student-services-demo-mcp.git
cd student-services-demo-mcp- Install dependencies:
uv sync
# or
make install- Run the server:
uv run main.py
# or
make start.mcpDocker Installation
docker compose up --buildClaude Desktop Configuration
Add to your Claude Desktop mcp.json file:
{
"mcpServers": {
"student-services-mcp": {
"url": "http://localhost:7860/mcp"
}
}
}