Skip to main content
Glama

diff_stats

Parse a unified diff string and return line-level statistics: additions, deletions, hunks, files changed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
diffYesUnified diff string to analyse

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It discloses the core behavior (parsing and returning stats) but does not mention edge cases (e.g., malformed diffs, handling of binary files) or output structure details beyond the statistic names.

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 one sentence, front-loaded with the action and resource, and contains no filler. Every part contributes to understanding.

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?

For a single-parameter tool with no output schema, the description covers the input, action, and the key output statistics. It is complete enough for an agent to know what to expect, though it could specify the exact return structure or data types.

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% for the 'diff' parameter. The description only repeats 'unified diff string' without adding extra syntax, format expectations, or examples beyond what the schema already provides.

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 verb 'parse' and the resource 'unified diff string', and lists the specific statistics returned (additions, deletions, hunks, files changed). This distinguishes it from sibling tools like text_diff or apply_patch.

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 description implies its usage (when you need line-level diff statistics) but does not explicitly state when to use it over alternatives or when not to use it. No exclusions or alternative tool references are provided.

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

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: applying patches, validating patches, generating diffs for text and JSON, computing stats, and merging with conflict markers. No two tools could be confused with each other based on their descriptions.

Naming Consistency4/5

Most tool names follow a similar object_verb pattern (json_diff, text_diff, patch_validate, three_way_merge), but apply_patch breaks this with verb_object order, and diff_stats is an odd noun-noun combination. Overall still readable and largely consistent.

Tool Count5/5

Six tools is an ideal size for a focused diff/patch toolkit. Each tool serves a distinct function without redundancy or unnecessary bloat.

Completeness5/5

The toolkit covers the full lifecycle of diffing, patching, validating, analyzing, and merging, with specific support for both text and JSON. No obvious gaps in the stated domain.