mcp-server-chart vs cursor-feedback-extension
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cursor-feedback-extension by jianger666 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 28 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 4 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-feedback-extension · Summary
MCP server that enables unlimited AI interactions in Cursor by implementing a feedback loop mechanism within IDE sidebar.
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-feedback-extension · Use cases
- Enabling long-running AI conversations without hitting Cursor's monthly request limit
- Implementing human-in-the-loop workflows where AI seeks validation before proceeding
- Enhancing collaboration by allowing AI to share work summaries and gather feedback directly in IDE
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-feedback-extension · Install
Installation Options
**1. Cursor Extension Marketplace** Search for "Cursor Feedback" in the Cursor extension marketplace.
**2. Command Line Installation**
cursor --install-extension jianger666.cursor-feedback**3. MCP Configuration** Add to your Cursor MCP config file (~/.cursor/mcp.json):
{
"mcpServers": {
"cursor-feedback": {
"command": "npx",
"args": ["-y", "cursor-feedback@latest"]
}
}
}**4. Global Installation**
npm install -g cursor-feedbackThen configure with:
{
"mcpServers": {
"cursor-feedback": {
"command": "cursor-feedback-mcp"
}
}
}