MCP Catalogs
Home

mcp-server-chart vs anki-mcp-server

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

mcp-server-chart
by antvis
anki-mcp-server
by nailuoGG
Stars★ 4,068★ 239
30d uses10,239
Score8451
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
ProductivityAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
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.

anki-mcp-server · Summary

An MCP server for Anki flashcards via AnkiConnect, allowing LLMs to create, manage, and sync cards.

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

anki-mcp-server · Use cases

  • Automatically generate flashcards from study materials using LLM
  • Batch import cards from external sources into Anki
  • Sync card creation between different devices through AnkiWeb

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

anki-mcp-server · Install

Installation

Prerequisites

  • Anki installed
  • AnkiConnect add-on installed in Anki

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "anki": {
      "command": "npx",
      "args": ["--yes", "anki-mcp-server"]
    }
  }
}

Or with custom AnkiConnect port:

{
  "mcpServers": {
    "anki": {
      "command": "npx",
      "args": ["--yes", "anki-mcp-server", "--port", "8080"]
    }
  }
}

Via Desktop Extension (.mcpb)

  1. Generate the .mcpb file: npm run pack
  2. Open Claude Desktop Settings → Extensions and drag the .mcpb file to install

Cline Configuration

Add to your VSCode settings cline_mcp_settings.json:

{
  "mcpServers": {
    "anki": {
      "command": "npx",
      "args": ["--yes", "anki-mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.