mcp-server-chart vs cursor-talk-to-figma-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cursor-talk-to-figma-mcp by grab | |
|---|---|---|
| Stars | ★ 4,068 | ★ 6,761 |
| 30d uses | 10,239 | — |
| Score | 84 | 59 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| 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.
cursor-talk-to-figma-mcp · Summary
MCP server connecting AI agents like Cursor and Claude Code with Figma for design automation.
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-talk-to-figma-mcp · Use cases
- Automating bulk text content replacement in Figma designs
- Converting prototype reactions to connector lines in FigJam
- Applying component instance overrides across multiple targets
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-talk-to-figma-mcp · Install
Installation
- Install Bun if you haven't already:
curl -fsSL https://bun.sh/install | bash- Run setup, this will also install MCP in your Cursor's active project
bun setup- Start the WebSocket server
bun socket- Install Figma plugin from [Figma community page](https://www.figma.com/community/plugin/1485687494525374295/cursor-talk-to-figma-mcp-plugin)
Claude Desktop Configuration
Add the server to your Claude MCP configuration in ~/.config/claude/config.json:
{
"mcpServers": {
"TalkToFigma": {
"command": "bunx",
"args": ["cursor-talk-to-figma-mcp@latest"]
}
}
}Cursor Configuration
Add the server to your Cursor MCP configuration in ~/.cursor/mcp.json:
{
"mcpServers": {
"TalkToFigma": {
"command": "bunx",
"args": ["cursor-talk-to-figma-mcp@latest"]
}
}
}