Skip to main content
Glama
bh213

hx-multianim-mcp

by bh213

get_traces

Retrieve recent trace output from a running application to diagnose issues, with options to clear the buffer or limit lines returned.

Instructions

Get recent trace() output from the running application (ring buffer of last 200 lines)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
clearNoClear the trace buffer after reading (default: false)
limitNoMax number of lines to return (default: 50)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.15.0

TDQS

A3.6/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 does disclose a useful behavioral detail (the 200-line ring buffer bound), which gives an agent the size limit of available data. However, it says nothing about permissions, whether the buffer retains or discards older lines, or the return shape beyond the buffer claim.

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 well-formed sentence with the resource front-loaded and the buffer-bound detail appended where it is useful. No filler or redundancy.

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

Completeness4/5

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

It is a low-complexity read tool with two optional, fully documented parameters, and the description adequately covers what it returns (trace lines, capped at 200). Only the absence of any routing versus sibling debug tools keeps it from a 5.

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 both the 'clear' and 'limit' parameters are already fully documented in the schema. The description adds no parameter-level meaning beyond what the schema provides, 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 (Get) and resource (trace() output) and clarifies the return as a ring buffer of the last 200 lines. It is clear what the tool does, but it never distinguishes itself from similar inspection siblings like get_errors or get_debugger_hits.

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 phrase 'from the running application' implies a debugging/live-inspection context, but there is no explicit when-to-use, when-not-to-use, or alternative named among the many debug siblings. Usage is left to inference.

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