set_active_camera
Select a camera by name to set it as the active rendering viewpoint for the Blender scene.
Instructions
Choose which camera the scene renders from.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Select a camera by name to set it as the active rendering viewpoint for the Blender scene.
Choose which camera the scene renders from.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the action but does not disclose side effects (e.g., whether the viewport updates, whether the previous active camera is affected) or any error conditions. This is minimal disclosure for a mutation-like tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, succinct sentence with no extraneous words. It is front-loaded with the core action and resource, making it easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple setter with one parameter and no annotations or output schema, the description should at least clarify the parameter and mention any requirements (e.g., camera must exist). It lacks these details, leaving the tool under-specified for reliable invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain the 'name' parameter. It does not explicitly state that 'name' refers to a camera name, nor does it clarify the expected format or source (e.g., from list_cameras). The parameter is left to inference.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Choose which camera') and the resource ('camera'), making the tool's purpose unambiguous. However, it does not differentiate from siblings like list_cameras or set_camera_transform, so it earns a 4 rather than a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. It does not mention prerequisites, such as the camera needing to exist, or scenarios where a different camera-related tool would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.