mcp-server-chart vs affine-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | affine-mcp-server by DAWNCR0W | |
|---|---|---|
| Stars | ★ 4,068 | ★ 166 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityKnowledge GraphDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
affine-mcp-server · Summary
Comprehensive MCP server for AFFiNE, exposing 84 tools for workspace, document, and database operations over stdio or HTTP.
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
affine-mcp-server · Use cases
- Connect Claude Desktop, Cursor, or other AI clients to AFFiNE workspaces for enhanced document creation and management
- Automate database operations in AFFiNE through MCP tool calling in AI workflows
- Create remote HTTP endpoints for browser-connected clients to interact with AFFiNE via standardized tools
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"]
}
}
}affine-mcp-server · Install
Installation
- Install the CLI globally:
npm i -g affine-mcp-server
affine-mcp --version- Or run ad-hoc:
npx -y -p affine-mcp-server affine-mcp -- --version- Docker deployment:
docker run -d
-p 3000:3000
-e MCP_TRANSPORT=http
-e AFFINE_BASE_URL=https://your-affine-instance.com
-e AFFINE_API_TOKEN=ut_your_token
-e AFFINE_MCP_AUTH_MODE=bearer
-e AFFINE_MCP_HTTP_TOKEN=your-strong-secret
ghcr.io/dawncr0w/affine-mcp-server:latestClaude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"affine": {
"command": "affine-mcp"
}
}
}