MCP Catalogs
Home

mcp-server-chart vs mcp-kibela-server

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

mcp-server-chart
by antvis
mcp-kibela-server
by kiwamizamurai
Stars★ 4,068★ 7
30d uses10,239
Score8436
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityKnowledge GraphCommunication
LanguageTypeScriptTypeScript
Last committhis month9 mo ago

mcp-server-chart · Summary

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

mcp-kibela-server · Summary

MCP server for Kibela API integration, enabling LLMs to search, retrieve, and manage notes with advanced filtering capabilities.

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

mcp-kibela-server · Use cases

  • AI assistants retrieving and summarizing recent notes from a team's knowledge base
  • Automated organization of content through folder and group management
  • Cross-referencing information between different notes and documents

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

mcp-kibela-server · Install

Installation

  1. Install via npm:
npm install -g @kiwamizamurai/mcp-kibela-server
  1. Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
  "mcpServers": {
    "kibela": {
      "command": "npx",
      "args": ["-y", "@kiwamizamurai/mcp-kibela-server"],
      "env": {
        "KIBELA_TEAM": "YOUR_TEAM_NAME",
        "KIBELA_TOKEN": "YOUR_TOKEN"
      }
    }
  }
}
  1. For Docker users:
{
  "mcpServers": {
    "kibela": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e", "KIBELA_TEAM",
        "-e", "KIBELA_TOKEN",
        "ghcr.io/kiwamizamurai/mcp-kibela-server:latest"
      ],
      "env": {
        "KIBELA_TEAM": "YOUR_TEAM_NAME",
        "KIBELA_TOKEN": "YOUR_TOKEN"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.