MCP Catalogs
Home

mcp-server-chart vs notion-mcp-server

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

mcp-server-chart
by antvis
notion-mcp-server
by awkoy
Stars★ 4,068★ 151
30d uses10,239
Score8444
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
NotionProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month13 mo ago

mcp-server-chart · Summary

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

notion-mcp-server · Summary

Production-ready MCP server for Notion API integration with comprehensive tools for managing pages, databases, comments, and users.

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

notion-mcp-server · Use cases

  • Create and manage Notion pages and databases through natural language commands
  • Update task lists and meeting notes directly from AI assistants
  • Automate content creation and organization in Notion workspaces

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

notion-mcp-server · Install

Installation

  1. **Obtain a Notion API Key**

- Create an integration at [Notion Developers](https://www.notion.so/my-integrations) - Copy your API key - Enable Integration for Your Pages

  1. **Claude Desktop Integration**

Create or edit the mcp.json file in your configuration directory:

{
  "mcpServers": {
    "notion-mcp-server": {
      "command": "npx",
      "args": ["-y", "notion-mcp-server"],
      "env": {
        "NOTION_TOKEN": "YOUR_KEY",
        "NOTION_PAGE_ID": "YOUR_PAGE_ID"
      }
    }
  }
}
  1. **Cursor Integration**

Create or edit the .cursor/mcp.json file in your project directory:

{
  "mcpServers": {
    "notion-mcp-server": {
      "command": "env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx",
      "args": ["-y", "notion-mcp-server"]
    }
  }
}
  1. **General Usage**

``bash env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx -y notion-mcp-server ``

Comparison generated from public README + GitHub signals. Last updated automatically.