Skip to main content
Glama
vino3dx
by vino3dx

render_load_preset

Destructive

Loads a render preset from a .rps file to apply saved rendering settings. Returns an error if the file path is missing or does not exist.

Instructions

从 .rps 文件载入渲染预设。文件不存在时报错。 [English] Load a render preset from a .rps file. Fails if the file does not exist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes.rps 预设文件路径。 | .rps preset file path.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

The description adds the useful failure behavior 'Fails if the file does not exist,' which is beyond the annotations. However, it does not disclose that loading a preset will overwrite or change current render settings, even though destructiveHint=true already signals mutating behavior. No contradiction with annotations exists.

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 extremely compact and front-loaded, stating the core action, the file type, and the key error condition in two short parallel sentences. There is no filler or unnecessary explanation.

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?

For a simple one-parameter operation augmented by destructiveHint=true and a complete schema, the description covers the essential purpose and a key failure mode. It does not mention return values or side effects in detail, but the tool is simple enough that this is a minor gap rather than a blocking omission.

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

Parameters3/5

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

The input schema already fully documents the single 'path' parameter with a matching description. The tool description adds little beyond the .rps format context, so the baseline score of 3 applies since schema coverage is 100%.

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

Purpose4/5

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

The description clearly states the action (load), the resource (render preset), and the file format (.rps), and even includes an error condition. However, it does not explicitly contrast with the sibling render_save_preset or other render-related tools, so it stops short of full 5-level differentiation.

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

Usage Guidelines3/5

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

The intended use is implied: call this when you want to load a render preset from a .rps file, and the file must exist. But there is no explicit guidance about when not to use it, what rollback options exist, or which alternative should be used for saving or creating presets.

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