Skip to main content
Glama

scene_delta

Read-only

Compare the current Nuke scene against a previous hash to detect changes. If unchanged, return changed=false; otherwise return the full digest body.

Instructions

Compare current scene state against a previous hash.

If unchanged, returns {"changed": False, "hash": prev_hash} with no graph enumeration leaking into the response. If changed, returns the full digest body with changed=True.

Args: prev_hash: the hash from a previous scene_digest (or scene_delta) call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
prev_hashYesthe ``hash`` from a previous ``scene_digest`` (or ``scene_delta``) call.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior4/5

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

With readOnlyHint=true already covering the safety profile, the description adds real value: the exact two-branch return shape and the notable fact that the unchanged path avoids leaking graph enumeration into the response. It does not address behavior on a stale or invalid hash, which keeps it below 5.

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

Conciseness4/5

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

Front-loaded with the core purpose, then the two return branches, then args. The Args section merely restates the schema description, which is mild redundancy but not bloat.

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?

There is no output schema, so the description's return-value disclosure is doing necessary work and covers both branches well. It is nearly complete for a one-parameter read tool, with error/stale-hash behavior the only gap.

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?

Schema coverage is 100% and the single parameter's description is verbatim duplicated in the prose, so the description adds no meaning beyond the schema. Baseline 3 is correct.

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?

States a specific verb+resource: comparing current scene state against a previous hash. It is clearly distinguishable from the digest-producing scene_digest, though it never names that sibling or diff_comp explicitly to route the agent.

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?

Describes the intended workflow: prev_hash comes from a prior scene_digest or scene_delta call, implying this is used to check whether anything has changed since a known snapshot. No when-not guidance or explicit alternatives are given, so it stops short of a 5.

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