MCP Catalogs
Home

mcp-server-chart vs nocodb-mcp-server

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

mcp-server-chart
by antvis
nocodb-mcp-server
by edwinbernadus
Stars★ 4,068★ 70
30d uses10,239
Score8446
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
DatabaseDeveloper ToolsProductivity
LanguageTypeScriptJavaScript
Last committhis month2 mo ago

mcp-server-chart · Summary

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

nocodb-mcp-server · Summary

NocoDB MCP Server enables CRUD operations on NocoDB databases through natural language commands.

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

nocodb-mcp-server · Use cases

  • Manage NocoDB database content through natural language
  • Perform bulk operations on NocoDB tables
  • Upload JSON files to create new tables in NocoDB

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

nocodb-mcp-server · Install

Installation

  1. Install Node.js and TypeScript
  2. Clone the repository and install dependencies:
npm install
npm run build
  1. Set up environment variables in a .env file:
NOCODB_URL=https://your-nocodb-instance.com
NOCODB_API_TOKEN=your_api_token_here
NOCODB_BASE_ID=your_base_id_here
  1. Configure Claude Desktop by adding to claude_desktop_config.json:
{
  "mcpServers": {
    "nocodb": {
      "command": "node",
      "args": ["{working_folder}/dist/start.js"],
      "env": {
        "NOCODB_URL": "https://your-nocodb-instance.com",
        "NOCODB_BASE_ID": "your_base_id_here",
        "NOCODB_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Alternatively, use directly from CLI:

npx -y nocodb-mcp-server {NOCODB_URL} {NOCODB_BASE_ID} {NOCODB_API_TOKEN}
Comparison generated from public README + GitHub signals. Last updated automatically.