mcp-server-chart vs brightspace-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | brightspace-mcp-server by RohanMuppa | |
|---|---|---|
| Stars | ★ 4,068 | ★ 19 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | educationAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
brightspace-mcp-server · Summary
MCP server for Brightspace (D2L) that lets AI check grades, assignments, announcements and course content.
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
brightspace-mcp-server · Use cases
- Ask about grades and compare performance across multiple courses
- Get upcoming assignment due dates and create study schedules
- Access and summarize course announcements and discussion posts
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"]
}
}
}brightspace-mcp-server · Install
Installation
**Option 1: Let your AI do it** Paste this into Claude Code, Cursor, Windsurf, Copilot, or any AI coding assistant:
Install brightspace-mcp-server for me by following https://github.com/RohanMuppa/brightspace-mcp-server/blob/main/LLMs.md (use --purdue if I'm at Purdue).**Option 2: Run it yourself**
npx brightspace-mcp-server setupPurdue students can add --purdue to skip entering the school URL.
**Manual Client Configuration** For clients not supporting the automatic setup:
- Run
npx brightspace-mcp-server setupfirst to save credentials - Register the server with command:
npx -y brightspace-mcp-server@latest - On Windows:
cmd /c npx -y brightspace-mcp-server@latest
**Claude Desktop Configuration** Add to claude_desktop_config.json:
{
"mcpServers": {
"brightspace": {
"command": "npx",
"args": ["-y", "brightspace-mcp-server@latest"]
}
}
}