Skip to main content
Glama
bh213

hx-multianim-mcp

by bh213

reload

Apply live updates to .manim files in a running game without restarting. Returns detailed parse, build, or signature errors with file, line, and column on failure.

Instructions

Hot-reload a .manim file (or all files if no file specified). On failure, errors[] entries include 'message', 'file', 'line', 'col', 'errorType' ('parse' | 'build' | 'signatureIncompatible'), and 'context' — builder errors now carry accurate file/line/col instead of 0 placeholders.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileNoResource path to reload (e.g. 'ui/menu.manim'). Omit to reload all changed files.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.15.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses failure semantics by enumerating the errors[] fields and errorType values, which is genuine added context. However, it says nothing about success behavior, permissions, or what state changes, leaving the write/mutation profile undeclared.

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?

Two sentences, front-loaded with the core action and scope. The error-detail sentence is dense but earns its place by documenting the failure contract. No filler.

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?

No output schema and no annotations mean the description must carry more. It covers the parameter and error shape reasonably, but omits success return values and the nature of the reload side effects, leaving gaps for a mutation-style 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 100% and the single 'file' parameter is already documented in the schema, including the 'omit to reload all' behavior that the description largely restates. No additional syntax or format detail is added, so 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 ('Hot-reload') and resource ('.manim file'), with scope clarified by 'or all files if no file specified'. It is distinguishable from siblings like eval_manim or list_builders, though it does not explicitly name a sibling to contrast against.

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?

There is no guidance on when to use reload versus alternatives such as eval_manim, nor any preconditions or exclusions. The only 'when' signal is the implicit default of reloading all changed files when no file is given.

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