Skip to main content
Glama

Summarize network errors

summarize_td_errors
Read-only

Collect and cluster errors and warnings across a TouchDesigner network to reveal the nodes with the most diagnostics and a suggested investigation order.

Instructions

Read-only: collect errors and warnings across a network and cluster them by message, severity type, or parent container, with the nodes that have the most diagnostics and a suggested order to investigate. Returns {total, error_count, warning_count, groups[], suggestions[]}; each group sample retains its error/warning severity. Use this for network-wide triage instead of reading every node's diagnostics one by one; use get_td_node_errors when you want the raw list for one node or sub-tree.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNoNetwork root to collect diagnostics under./project1
group_byNoHow to cluster diagnostics: by exact message, by severity type (error/warning), or by parent container.message

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesThe network root diagnostics were collected under.
totalYesTotal number of diagnostics found across the network (errors + warnings).
groupsYesDiagnostic clusters, largest first.
group_byYesHow the diagnostics were clustered.
error_countYesNumber of error-severity diagnostics.
suggestionsYesPlain-language next steps, including which nodes to inspect first.
warning_countYesNumber of warning-severity diagnostics.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed15 schema fields changedv0.13.2
    • changedInput schema / properties / group_by / description
      Previous value: -"How to cluster errors: by exact message, by error type, or by parent container (to find a common upstream cause)."New value: +"How to cluster diagnostics: by exact message, by severity type (error/warning), or by parent container."
    • changedInput schema / properties / path / description
      Previous value: -"Network root to collect errors under."New value: +"Network root to collect diagnostics under."
    • addedOutput schema / properties / error_count
      Added value: +{
      +  "description": "Number of error-severity diagnostics.",
      +  "type": "number"
      +}
    • changedOutput schema / properties / group_by / description
      Previous value: -"How the errors were clustered, echoing the request."New value: +"How the diagnostics were clustered."
    • changedOutput schema / properties / groups / description
      Previous value: -"Error clusters, largest first; fixing a big cluster's cause clears it at once."New value: +"Diagnostic clusters, largest first."
    • changedOutput schema / properties / groups / items / properties / count / description
      Previous value: -"How many errors fall into this cluster."New value: +"How many diagnostics fall into this cluster."
    • changedOutput schema / properties / groups / items / properties / sample / description
      Previous value: -"One representative error from the cluster."New value: +"One representative diagnostic from the cluster."
    • changedOutput schema / properties / groups / items / properties / sample / properties / message / description
      Previous value: -"That node's error message, as a concrete example."New value: +"That node's diagnostic message, as a concrete example."
    • addedOutput schema / properties / groups / items / properties / sample / properties / type
      Added value: +{
      +  "description": "Severity of the representative diagnostic.",
      +  "enum": [
      +    "error",
      +    "warning"
      +  ],
      +  "type": "string"
      +}
    • changedOutput schema / properties / groups / items / properties / sample / required
      Previous value: -[
      -  "path",
      -  "message"
      -]New value: +[
      +  "path",
      +  "message",
      +  "type"
      +]
    • changedOutput schema / properties / path / description
      Previous value: -"The network root errors were collected under, echoing the request."New value: +"The network root diagnostics were collected under."
    • changedOutput schema / properties / suggestions / description
      Previous value: -"Plain-language next steps, e.g. the common cause and which nodes to check first."New value: +"Plain-language next steps, including which nodes to inspect first."
    • changedOutput schema / properties / total / description
      Previous value: -"Total number of errors found across the network (0 means clean)."New value: +"Total number of diagnostics found across the network (errors + warnings)."
    • addedOutput schema / properties / warning_count
      Added value: +{
      +  "description": "Number of warning-severity diagnostics.",
      +  "type": "number"
      +}
    • changedOutput schema / required
      Previous value: -[
      -  "path",
      -  "total",
      -  "group_by",
      -  "groups",
      -  "suggestions"
      -]New value: +[
      +  "path",
      +  "total",
      +  "error_count",
      +  "warning_count",
      +  "group_by",
      +  "groups",
      +  "suggestions"
      +]
  2. Changed10 schema fields changedv0.5.0
    • addedOutput schema / properties / group_by / description
      Added value: +"How the errors were clustered, echoing the request."
    • addedOutput schema / properties / groups / description
      Added value: +"Error clusters, largest first; fixing a big cluster's cause clears it at once."
    • addedOutput schema / properties / groups / items / properties / count / description
      Added value: +"How many errors fall into this cluster."
    • addedOutput schema / properties / groups / items / properties / key / description
      Added value: +"The shared message, type, or parent path for this cluster."
    • addedOutput schema / properties / groups / items / properties / sample / description
      Added value: +"One representative error from the cluster."
    • addedOutput schema / properties / groups / items / properties / sample / properties / message / description
      Added value: +"That node's error message, as a concrete example."
    • addedOutput schema / properties / groups / items / properties / sample / properties / path / description
      Added value: +"Path of one representative node in this cluster."
    • addedOutput schema / properties / path / description
      Added value: +"The network root errors were collected under, echoing the request."
    • addedOutput schema / properties / suggestions / description
      Added value: +"Plain-language next steps, e.g. the common cause and which nodes to check first."
    • addedOutput schema / properties / total / description
      Added value: +"Total number of errors found across the network (0 means clean)."
  3. First observedv0.3.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description reinforces this by starting with 'Read-only'. It adds useful behavioral context beyond annotations: the clustering logic, the 'suggested order to investigate', and that group samples retain error/warning severity. This provides a clear picture of the tool's operation without contradicting the annotations.

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?

The description is composed of three well-structured sentences, front-loaded with the tool's core purpose. Every sentence adds value: the first explains what the tool does, the second outlines the return structure, and the third gives usage guidance. No fluff or redundancy.

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 is comprehensive for a read-only network diagnostics summary tool. It explains the return structure, grouping options, the suggested investigation order, and explicitly distinguishes it from the raw-error alternative. Given the presence of an output schema, the description does not need to detail every return field; it provides sufficient context for correct selection and invocation.

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 coverage is 100%, so the parameters are fully described in the schema. The description does not add new meaning beyond what the schema already provides, though it does mention grouping by 'message, severity type, or parent container', which aligns with the group_by enum. Baseline 3 is appropriate because the schema carries the parameter documentation burden.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: collecting and clustering errors/warnings across a network. It specifies grouping dimensions (message, severity type, parent container) and output components. It explicitly differentiates itself from the sibling get_td_node_errors by describing what this tool does versus that alternative.

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

Usage Guidelines5/5

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

The description provides explicit guidance: use this for network-wide triage instead of reading each node's diagnostics individually, and use get_td_node_errors when the raw list for a single node or sub-tree is needed. This clearly defines when to use this tool versus an alternative.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Pantani/tdmcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server