Skip to main content
Glama

blender_manage_addon

Enable, disable, or install Blender add-ons. Installing from a .zip requires explicit confirmation to prevent silent third-party code execution.

Instructions

Enable, disable or install a Blender add-on.

Installing requires confirm=true because it runs third-party code inside Blender. Only .zip archives are accepted, and the call is refused without that flag so an agent cannot silently install anything.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoFor install, a URL to a .zip.
pathNoFor install, a local .zip.
addonYesAdd-on module name, e.g. io_scene_gltf2.
actionNoWhat to do.enable
enableNoEnable right after installing.
moduleNoModule name to enable after install, if it differs from the file.
confirmNoRequired for install: it executes third-party code.
response_formatNo'markdown' for readable output, 'json' for raw structured data.markdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv4.4.0

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are all false, so the description carries the full burden for behavioral disclosure. It explicitly warns that install runs third-party code, requires confirm, accepts only .zip, and refuses the call without the flag to prevent silent installs. This is critical safety information not present in the schema or annotations. It does not cover all side effects (e.g., disabling behavior), but the key risk is well-documented.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences, the first stating the core purpose and the second adding essential constraints. Every word earns its place; no redundancy or filler. Information is front-loaded, making it easy for an agent to quickly grasp the tool's function and key requirements.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 8 parameters, an enum action, and a safety-critical confirm flag, this tool is moderately complex. The description, combined with thorough schema comments, covers the purpose, install constraints, and parameter meanings. It doesn't mention that url and path are alternative sources (agent can infer from 'For install'), nor does it describe return values, but no output schema exists and the core usage is well-covered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, providing detailed comments for each parameter, so the baseline is 3. The description adds meaningful constraints beyond the schema: only .zip archives are accepted, confirm is mandatory for installs, and the call is refused without it. This clarifies the install flow and the relationship between url/path and confirm, enhancing the schema's documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the exact function: 'Enable, disable or install a Blender add-on.' This clearly names the verb and resource, distinguishing it from siblings like blender_list_addons which only list addons. The purpose is unambiguous and acts as a precise filter.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: installing requires confirm=true and only .zip archives are accepted, with the call refused without the flag. It gives concrete usage conditions but does not explicitly mention alternative tools for listing addons or installing packages. However, the action enum and purpose make the appropriate scenario evident.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools