Skip to main content
Glama

set_interpolation

Idempotent

Set the interpolation type (Bezier, Linear, or Constant) for all keyframes on an object's channel to control animation easing between keyframes.

Instructions

Set keyframe interpolation for all keyframes on a channel. Types: BEZIER, LINEAR, CONSTANT.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
objectYes
data_pathYes
interpolationNoBEZIER

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0+hardened.2

TDQS

A3.6/5.0
Behavior3/5

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

The annotation idempotentHint=true already covers repeat safety. The description adds useful scope context: it affects ALL keyframes on a channel, implying bulk overwrite of existing interpolation. It does not mention prerequisites (e.g., existing keyframes) or what happens if no keyframes exist, but it does not contradict annotations.

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?

Two sentences with no padding. The primary action is front-loaded and the allowed types are listed immediately after. Every word contributes essential information.

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

Completeness3/5

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

For a simple setter with an output schema present, the description covers the core operation and the interpolation parameter. It is incomplete on object/data_path semantics and lacks any usage guidance relative to siblings, leaving modest gaps for an agent to infer.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must carry the burden. It provides the valid enum values for 'interpolation', which is helpful. However, the two required parameters 'object' and 'data_path' are left entirely unexplained; the agent is not told what format to use for object names or how to specify a channel via data_path.

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 a specific verb ('Set'), a precise resource ('keyframe interpolation for all keyframes on a channel'), and clarifies the allowed values (BEZIER, LINEAR, CONSTANT). It clearly differentiates from sibling tools like set_keyframe or set_keyframes, which deal with keyframe values rather than interpolation type.

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 usage context is implied: an agent can infer this tool is for changing interpolation type on a channel. However, there is no explicit guidance on when to choose this over alternatives, such as set_keyframe for individual keyframes, or any exclusions or prerequisites.

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