MCP Catalogs
Home

mcp-server-chart vs getnote-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
getnote-mcp
by iswalle
Stars★ 4,068★ 61
30d uses10,239
Score8448
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityKnowledge GraphAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis monththis month

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

getnote-mcp · Summary

MCP server for GetNote, a personal note management tool, enabling AI to create, edit, search and organize notes.

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

getnote-mcp · Use cases

  • AI assistants helping users capture and organize thoughts through voice commands like 'save this note' or 'search for previous notes about X'
  • Automating knowledge management by having AI process external content (blogs, live streams) and store it in organized knowledge bases
  • Implementing time tracking systems using note internal links to automatically connect daily logs with project notes

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}

getnote-mcp · Install

Installation

# Direct execution (recommended, no cloning needed)
npx @getnote/mcp

# Or global installation
npm install -g @getnote/mcp

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "getnote": {
      "command": "node",
      "args": ["/path/to/getnote-mcp/dist/index.js"],
      "env": {
        "GETNOTE_API_KEY": "your_api_key_here",
        "GETNOTE_CLIENT_ID": "your_client_id_here"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.