MCPNotes vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
MCPNotes by 9Ninety | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 36 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 38 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
MCPNotes · Summary
A dual-server MCP system for AI-powered note-taking with web interface and DynamoDB storage.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCPNotes · Use cases
- Personal knowledge management with AI assistance
- Meeting documentation and action item tracking
- Research note organization and synthesis
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
MCPNotes · Install
Installation
**Recommended:** Run directly with npx or bunx
**Alternative:**
- Clone this repository
- Install dependencies with
npm install
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-notes": {
"command": "npx",
"args": [
"-y",
"-p",
"mcp-notes",
"mcp-notes-server",
"--dynamodb",
"dynamodb://<access_key>:<secret_key>@<region>/<table>"
]
}
}
}Web Server
npx -p mcp-notes mcp-notes-web-server --dynamodb "dynamodb://<access_key>:<secret_key>@<region>/<table>"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"]
}
}
}