mcp-server-chart vs sticky-notes-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | sticky-notes-server by bsmi021 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 28 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityKnowledge GraphAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 15 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
sticky-notes-server · Summary
MCP server for managing sticky notes with REST API, WebSocket support, and React UI.
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
sticky-notes-server · Use cases
- Personal note-taking with cross-device synchronization
- Team collaboration through shared notes and conversations
- Knowledge management with hierarchical tags and sections
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"]
}
}
}sticky-notes-server · Install
# Clone the repository
git clone https://your.repo.url/sticky-notes-server.git
cd sticky-notes-server
# Install dependencies
npm install
# Build the project
npm run build
# Run the server
npm startIntegration with Claude Desktop: Add to your claude_desktop_config.json:
{
"mcpServers": {
"stickyNotes": {
"command": "node",
"args": ["path/to/sticky-notes-server/build/index.js"],
"env": {
"DB_ROOT": "desired/db/location",
"WEB_UI_PORT": "3000",
"WS_PORT": "8080"
}
}
}
}