MCP Catalogs
Home

blender-open-mcp vs everything

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

blender-open-mcp
by dhakalnirajan
everything
by modelcontextprotocol
Stars★ 97★ 85,748
30d uses
Score4777
Official
Categories
AI / LLM ToolsDeveloper ToolsMedia
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

blender-open-mcp · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.