Skip to main content
Glama
vino3dx
by vino3dx

anim_get_keys

Read-only

Fetch keyframe data for animation properties: frame, value, and in/out tangents, with pagination for large sets.

Instructions

读取某个属性的所有关键帧(帧号、值、进出切线类型),支持 limit/offset 分页。 [English] Read every keyframe of a property (frame, value, in/out tangent type). Paginated with limit/offset.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo最多返回条数,默认 200。 | Maximum entries, default 200.
offsetNo跳过的条数,默认 0。 | Entries to skip, default 0.
objectsNo对象名列表;省略则取选择中的第一个。 | Object names; the first of the selection if omitted.
propertyYes属性名:position / rotation / scale,或任意命名属性。 | Property name: position / rotation / scale, or any named property.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already mark the operation readOnly/non-destructive; the description adds the concrete read payload (frame, value, tangent types) and pagination behavior via limit/offset. It doesn't mention empty-result or error behavior, but the annotation lowers the burden.

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 short bilingual sentences convey the core function exactly, with no filler. The key action and return values are front-loaded before the pagination note.

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

Completeness5/5

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

The description covers what the tool returns, and the schema/annotations cover parameters and safety. No output schema exists, but the return shape is stated, so the agent has enough to select and invoke it correctly.

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 description coverage is 100%, so the schema already documents all four parameters including defaults and the objects fallback to selection. The description only restates pagination and property scope, adding little beyond the schema.

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 states a specific verb ('read/读取'), resource ('every keyframe of a property'), and the returned data shape (frame, value, in/out tangent type). It is clear, but it does not explicitly contrast with sibling tools such as anim_get_key_stats or anim_get_controller.

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 use case is implied: when you need all keyframes of a property, this is the tool. However, the description gives no explicit when-to-use guidance or alternatives, leaving the agent to infer selection from the name and sibling context.

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