mcp-server-chart vs cursor-notebook-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cursor-notebook-mcp by jbeno | |
|---|---|---|
| Stars | ★ 4,068 | ★ 157 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsFile SystemAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cursor-notebook-mcp · Summary
MCP server enabling AI agents to interact with Jupyter Notebook files through cell manipulation and metadata editing.
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
cursor-notebook-mcp · Use cases
- AI agents editing Jupyter notebooks within Cursor IDE to analyze data and create machine learning tutorials
- Automated notebook validation and cleanup in development workflows
- Converting notebooks to Python scripts or HTML for documentation purposes
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"]
}
}
}cursor-notebook-mcp · Install
Installation
From PyPI:
pip install cursor-notebook-mcpFrom source:
git clone https://github.com/jbeno/cursor-notebook-mcp.git
cd cursor-notebook-mcp
python -m venv .venv
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
pip install -e .Server Configuration (Cursor)
Create or update your ~/.cursor/mcp.json:
{
"mcpServers": {
"notebook_mcp": {
"url": "http://127.0.0.1:8080/mcp"
}
}
}Then run the server:
cursor-notebook-mcp --transport streamable-http --allow-root /path/to/your/notebooks --host 127.0.0.1 --port 8080