MCP Catalogs
Home

mcp-server-chart vs blender-open-mcp

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

mcp-server-chart
by antvis
blender-open-mcp
by dhakalnirajan
Stars★ 4,068★ 97
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsMedia
LanguageTypeScriptPython
Last committhis month1 mo ago

mcp-server-chart · Summary

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

blender-open-mcp · Summary

An MCP server that connects Blender 3D with local AI models via Ollama for natural language control.

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

blender-open-mcp · Use cases

  • 3D artists controlling Blender with natural language commands
  • AI-assisted modeling and texturing workflows
  • Automating Blender tasks through MCP clients

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

blender-open-mcp · Install

Installation

Prerequisites

  • Blender 3.0+
  • Python 3.10+
  • Ollama
  • uv

Steps

  1. Clone and install:
git clone https://github.com/dhakalnirajan/blender-open-mcp.git
cd blender-open-mcp
uv venv
source .venv/bin/activate  # Linux / macOS
# .venv\Scripts\activate    # Windows
uv pip install -e .
  1. Install Blender add-on:
  • Open Blender
  • Edit → Preferences → Add-ons → Install...
  • Select addon.py from repository
  • Enable "Blender MCP"
  1. Pull Ollama model:
ollama pull llama3.2

Claude Desktop / Cursor Integration

Add to mcp.json:

{
  "mcpServers": {
    "blender-open-mcp": {
      "command": "blender-mcp",
      "args": ["--transport", "stdio"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.