Skip to main content
Glama
bh213

hx-multianim-mcp

by bh213

get_errors

Retrieve accumulated runtime errors and exceptions since the last query to diagnose issues in a running hx-multianim game. Clear the error buffer after reading by default.

Instructions

Get accumulated runtime errors/exceptions since last query

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
clearNoClear the error buffer after reading (default: true)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.15.0

TDQS

A3.5/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, and it does disclose the accumulation/cursor semantic ('accumulated ... since last query'). However, it omits the most consequential behavior: reading drains the buffer by default (the 'clear' default is only visible in the schema), plus any return format or error-shape details.

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?

A single tight sentence with the scope constraint ('since last query') front-loaded and no wasted words.

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?

For a one-optional-parameter read tool with no output schema, the description plus schema cover what an agent needs to invoke it. The drain-on-read behavior is documented on the parameter itself, which is the natural place for it.

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 single 'clear' parameter is already fully documented in the schema, including its default of true. The description adds no syntax or format meaning beyond that, 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 and resource ('get accumulated runtime errors/exceptions') and pins the scope with 'since last query'. It does not distinguish itself from sibling diagnostics tools like get_traces, get_debugger_hits, or get_game_events, so an agent has no basis for choosing among 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?

There is no explicit when-to-use guidance, no prerequisites, and no named alternative. The only hint is the implied debugging context of 'runtime errors/exceptions', which the agent must infer.

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