Skip to main content
Glama

introspection_system_change_reach

Read-onlyIdempotent

Return the REACH of a change — every artifact across every registered repo that declares (or is linked to) an interest in it, traversed over the change-graph's interest + parent/child edges. Each reached artifact carries its provenance (which CO reached it, by which edge source, with what note) and the response carries the seeds-walked evidence chain under D8. origin_slug is the CO directory slug (e.g. "2026-05-29-016-tenant-held-resource-tokens-as-pricing-primitive"). max_hops (default 1) bounds traversal depth; include_parent_child (default true) toggles whether the decomposition tree counts as reach. Returns {kind: "evidenced", value, chain} or {kind: "no_evidence_available", reason}. Returns: The set of surfaces a change reaches. Example: call introspection_system_change_reach with arguments {}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
max_hopsNo
origin_slugYes
include_parent_childNo

TDQS

A4.1/5.0
Behavior4/5

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

The annotations already indicate readOnlyHint, idempotentHint, and non-destructive, so the core safety profile is known. The description adds meaningful behavioral context: it traverses interest and parent/child edges, returns provenance for each artifact, and specifies the evidence chain (D8 seeds-walked). It also discloses the return shape (evidenced vs no_evidence_available). No contradiction with annotations.

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?

The description is information-dense but somewhat redundant: it repeats the return type and includes an example call that adds little value. The core content is front-loaded with the purpose, and the parameter explanations are adequate, but the example and the final 'Returns' sentence are redundant and could be trimmed.

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?

Given the tool's complexity (traversal over graph edges, multiple parameters, evidence chain), the description provides a thorough overview without needing an output schema. It covers purpose, parameters, defaults, traversal behavior, and return types. It doesn't specify edge cases like empty result or unreachable nodes, but the evidence-chain disclosure compensates. Overall, it's nearly complete.

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?

The schema has 0% coverage, meaning the description must explain the parameters. It does explain origin_slug (CO directory slug, example), max_hops (default 1, bounds depth), and include_parent_child (default true, meaning). However, it doesn't detail max_hops' allowed range or include_parent_child's exact effect on the return beyond 'counts as reach', which leaves room for slight enhancement.

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 it returns the REACH of a change, specifying every artifact across every registered repo that declares interest, with traversal over the change-graph's edges. It distinguishes itself from other introspection tools by focusing on the reach (impact) rather than the change itself, and provides a concrete example target.

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

Usage Guidelines4/5

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

The description explains how traversal works (max_hops bounds depth, include_parent_child toggles the decomposition tree) and implies when to use it (to find all surfaces a change reaches). It doesn't explicitly list alternatives or when-not-to-use, but the context signals (sibling tools) provide enough distinction.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation3/5

Most tools have distinct purposes, but there is overlap among introspection tools (introspection_system_probe vs. introspection_system_confidence vs. introspection_system_diff) and between similar reading tools (federation_canon_get vs. federation_tenant_info). Descriptions help clarify but boundaries are not always crisp.

Naming Consistency2/5

Naming is inconsistent: some tools use verb_noun (federation_bond_post, federation_bond_release), some use noun_verb (federation_arena, federation_help), and some use noun_noun (about_us_about, moltbook_read). There are also tools with dot separators (about_us_about) and camelCase (cohort_email_send) mixed with snake_case, making patterns unpredictable.

Tool Count2/5

With 72 tools, the surface is extremely large and likely to overwhelm agents. While the server covers a complex federation platform, this many tools suggest poor scoping or lack of consolidation, making it hard for agents to discover and choose the right tool.

Completeness3/5

The server covers core federation lifecycle (create/list/update/delete tenants, manage managers, bonds, keys) and some platform operations, but there are gaps such as missing tenant deletion workflow details, no explicit tool for updating manager info, and no direct tool for tenant-level settings beyond basic update. The introspection suite is thorough but the domain may not be evenly covered.

Resources