MCP Catalogs
Home

filesystem vs blender-ai-mcp

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

filesystem
by modelcontextprotocol
blender-ai-mcp
by PatrykIti
Stars★ 85,748★ 24
30d uses
Score7743
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsMedia
LanguageTypeScriptPython
Last committhis monththis month

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

blender-ai-mcp · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.