MCP Server Policy

BLENDER MCP POLICY

Enforce policies on every tool call to the Blender MCP Server. 22 tools listed, categorised, and ready for rules.

ahujasid/blender-mcp 13 read 9 write 22 tools total
blender 3d-modeling python creative scene-manipulation

GET STARTED

Download this policy scaffold and add your rules. Intercept enforces them on every tool call before it reaches Blender.

terminal

# Download policy scaffold

curl -o blender.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/blender.yaml

# Run with Intercept

intercept --policy blender.yaml -- npx -y @ahujasid/blender-mcp

Server documentation: https://github.com/ahujasid/blender-mcp

READ TOOLS

13

WRITE TOOLS

5

EXECUTE TOOLS

4

POLICY YAML

This scaffold lists every tool with empty rules. Add conditions — rate limits, argument validation, deny rules — then deploy with Intercept.

blender.yaml
version: "1"
description: "Policy for ahujasid/blender-mcp"
default: "allow"
tools:
    get_scene_info:
        rules: []
    get_object_info:
        rules: []
    get_viewport_screenshot:
        rules: []
    get_polyhaven_categories:
        rules: []
    get_polyhaven_status:
        rules: []
    get_hyper3d_status:
        rules: []
    get_sketchfab_status:
        rules: []
    get_hunyuan3d_status:
        rules: []
    search_polyhaven_assets:
        rules: []
    search_sketchfab_models:
        rules: []
    get_sketchfab_model_preview:
        rules: []
    poll_rodin_job_status:
        rules: []
    poll_hunyuan_job_status:
        rules: []
    set_texture:
        rules: []
    download_polyhaven_asset:
        rules: []
    download_sketchfab_model:
        rules: []
    import_generated_asset:
        rules: []
    import_generated_asset_hunyuan:
        rules: []
    execute_blender_code:
        rules: []
    generate_hyper3d_model_via_text:
        rules: []
    generate_hyper3d_model_via_images:
        rules: []
    generate_hunyuan3d_model:
        rules: []

FREQUENTLY ASKED QUESTIONS

What tools does the Blender MCP server expose?

The Blender MCP Server exposes 22 tools across 3 categories: Read, Write, Execute. Each tool can be individually controlled with Intercept policies.

How do I enforce policies on Blender?

Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Blender MCP server. Every tool call is evaluated against your YAML policy before execution.

Is the Blender policy free to use?

Yes. All Intercept policies are open source under the Apache 2.0 licence. Download, modify, and deploy without restrictions.

ENFORCE POLICIES ON BLENDER

Open source. One binary. Zero dependencies.