MCP Catalogs
Home

everything vs blender-ai-mcp

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

everything
by modelcontextprotocol
blender-ai-mcp
by PatrykIti
Stars★ 85,748★ 24
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsMedia
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

blender-ai-mcp · Summary

Production MCP server for Blender with goal-first routing, curated tools, and vision-assisted 3D modeling workflows.

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-ai-mcp · Use cases

  • AI-guided 3D modeling with goal-first workflows
  • Automated scene inspection and measurement
  • Vision-assisted 3D asset creation and refinement

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

blender-ai-mcp · Install

Installation

  1. Install the Python package:
pip install blender-ai-mcp
  1. Configure Claude Desktop:

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "blender-ai-mcp": {
      "command": "python",
      "args": ["-m", "blender_ai_mcp.server"]
    }
  }
}
  1. Start Blender with the addon enabled.
Comparison generated from public README + GitHub signals. Last updated automatically.