Skip to main content
Glama
Padalogu

MCP Anime.js v4 Expert Server

by Padalogu

register_parameter

Add or update a parameter in the Anime.js v4 catalog with its category, type, description, version, and examples to keep engine references current.

Instructions

Registra o actualiza dinámicamente un parámetro en el catálogo del motor Anime.js v4.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesNombre del parámetro
tipsNoConsejos y notas de rendimiento
typeYesTipo de dato en TypeScript (ej. 'number | string')
categoryYes
examplesYesEjemplos de uso
descriptionYesDescripción detallada del parámetro
causesReflowNoIndica si causa recálculo de diseño (reflow)
defaultValueNoValor predeterminado
versionAddedYesVersión en la que se introdujo (ej. 'v4.0.0')
isGpuAcceleratedNoIndica si la propiedad es acelerada por GPU

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It says the registration is 'dynamic' but does not disclose what happens on name collision (overwrite vs error), whether required fields cause validation failure, whether changes persist, or whether the catalog is shared/mutated globally. For a mutation tool with zero annotation coverage, this is a real gap.

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?

A single front-loaded sentence with no redundancy. It is terse but every word counts; however it is arguably under-specified rather than optimally concise.

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

Completeness2/5

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

With 10 parameters, 6 of them required, no annotations, and no output schema, the one-sentence description is inadequate. It omits collision behavior, permission/auth needs, and the effect on the live engine, which an agent needs before invoking a catalog-mutating tool.

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 90%, so the schema already documents nearly every field, and the required/enum structure is clear. The description adds no semantic detail about any parameter (e.g., the versionAdded format or category enum usage), so the baseline 3 applies.

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 pair (registers/updates) and a specific resource (a parameter in the Anime.js v4 engine catalog). It is distinguishable from read-oriented siblings like list_engine_parameters and get_parameter_details, though it does not explicitly name them.

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

Usage Guidelines2/5

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

No indication of when to use this tool versus add_custom_doc, get_parameter_details, or list_engine_parameters. No prerequisites or exclusions are given; the agent must infer that this is a write path from the verb alone.

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