B

Blender

Automate Blender scenes and renders.

·No reviews yet
Repo
Share:

About

Auto-generated

Blender is a Model Context Protocol server in the Design category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Blender.

What does the Blender MCP do?
The Blender MCP allows automation of Blender scenes, primarily for rendering. It provides programmatic control over Blender, enabling scripting of 3D design and rendering tasks.
How can I install the Blender MCP in a client?
Installation in a client like Claude Desktop typically involves adding the Blender MCP's repository URL (https://github.com/ahujasid/blender-mcp) within the client's MCP configuration settings. Specific steps may vary by client application.
Does the Blender MCP require an API key or other credentials?
No, the Blender MCP uses 'none' as its authentication type. It does not require an API key, OAuth, or any additional credentials for its operation.
What are the key capabilities exposed by this MCP?
This MCP is designed to automate Blender, focusing on 3D scene manipulation and rendering. It allows integration with Blender for tasks such as scene setup, animation control, and image output.
Is there any cost associated with using the Blender MCP?
The Blender MCP itself is provided by the Community and available via GitHub, implying it is open source and free to use. Any costs would depend on your Blender license or other associated infrastructure.
What are the common limitations of the Blender MCP?
A common limitation is that the Blender MCP relies on a local or accessible Blender installation to function. Its capabilities are also constrained by the features exposed through Blender's scripting interface.

Install Blender

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

Add this to ~/.cursor/mcp.json.

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

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "blender": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-blender"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.