MCP Catalogs
Home

golemcore-bot vs mcp-server-chart

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

golemcore-bot
by alexk-dev
mcp-server-chart
by antvis
Stars★ 40★ 4,068
30d uses10,239
Score4584
Official
Categories
CommunicationDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageJavaTypeScript
Last committhis monththis month

golemcore-bot · Summary

GolemCore Bot is an agent platform with MCP integration, enabling channel-connected agents with plugins and memory.

mcp-server-chart · Summary

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

golemcore-bot · Use cases

  • Building chatbots for multiple channels (Telegram, web dashboard) with memory and delayed follow-ups
  • Extending agent capabilities through plugins and MCP server integrations
  • Creating inspectable AI agents with traceable execution and Hive-connected control flows

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

golemcore-bot · Install

Docker Installation

docker pull ghcr.io/alexk-dev/golemcore-bot:latest

docker run -d \
  --name golemcore-bot \
  --shm-size=256m \
  --cap-add=SYS_ADMIN \
  -e STORAGE_PATH=/app/workspace \
  -e TOOLS_WORKSPACE=/app/sandbox \
  -v golemcore-bot-data:/app/workspace \
  -v golemcore-bot-sandbox:/app/sandbox \
  -p 8080:8080 \
  --restart unless-stopped \
  ghcr.io/alexk-dev/golemcore-bot:latest

Open http://localhost:8080/dashboard and sign in with the temporary admin password from logs.

Claude Desktop Integration

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "golemcore": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "ghcr.io/alexk-dev/golemcore-bot:latest"]
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.