Skip to main content
Glama

x402-abundant-numbers

Abundant Numbers: Check if a number is abundant.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nNoN to process
limitNoLimit to process

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / limit
      Added value: +{
      +  "description": "Limit to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / n
      Added value: +{
      +  "description": "N to process",
      +  "type": "string"
      +}
  2. First observed

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden, and it discloses almost nothing: no definition of 'abundant' (sum of proper divisors exceeding n), no indication of the return shape (boolean vs. details), and no explanation of how the 'limit' parameter alters behavior. The only disclosed trait is the predicate being evaluated.

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?

A single front-loaded sentence with no filler or redundancy. It is efficiently sized, though its brevity comes at the cost of the missing details noted elsewhere rather than being a virtue of tight editing.

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

Completeness2/5

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

For a standalone math utility with no annotations and no output schema, the description omits the return type, the semantics of the second parameter, and any disambiguation from three sibling tools that appear to do the same thing. An agent could invoke it, but not confidently or correctly in the presence of those duplicates.

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 baseline is 3; the description adds no parameter meaning beyond the schema. The schema's own notes are uninformative ('N to process', 'Limit to process'), and the description does not clarify what 'limit' means for a single-number predicate check, leaving a real ambiguity unresolved.

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?

The sentence states a specific verb ('Check') and a defined mathematical property ('abundant') applied to a number, so an agent knows exactly what computation happens. However, it does nothing to distinguish itself from near-identical siblings such as x402-is-abundant, x402-is-abundant-num, and x402-is-abundant-number, which appear to compute the same predicate.

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 when-to-use guidance, no mention of the alternative near-duplicate siblings, and no exclusions. The caller is left to guess which of the four is-abundant variants to pick, and under what conditions.

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.

Resources