Skip to main content
Glama

x402-parallelogram-area

Parallelogram Area: Area of parallelogram.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
baseNoBase to process
heightNoHeight to process

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / base
      Added value: +{
      +  "description": "Base to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / height
      Added value: +{
      +  "description": "Height to process",
      +  "type": "string"
      +}
  2. First observed

TDQS

C2.4/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. It says nothing about the computation (base × height), expected units, input format for the string-typed parameters, or what is returned. For a pure deterministic calculator the risk is low, but the description still adds no behavioral context beyond the name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence and front-loads the resource, so it is not bloated. However, its brevity comes at the cost of substance — the second clause simply repeats the first rather than earning its place.

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

Completeness3/5

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

For a two-parameter, no-output-schema geometry calculator this is minimally sufficient; an agent knows roughly what it does. Missing unit conventions and the fact that base and height are expected as numeric strings are real gaps, but low for such a simple tool.

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 parameters (base, height) are documented in the schema, which sets the baseline at 3 under the rubric. The description adds nothing about the relationship between them or the units, and notably both are typed as strings with no format guidance, but that gap lives in the schema rather than the description.

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

Purpose2/5

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

The description "Parallelogram Area: Area of parallelogram" restates the tool name and title without adding any specification. It does identify the resource (parallelogram area), but it is effectively a tautology rather than a distinct verb+resource statement, and it does nothing to separate this tool from siblings like x402-rhombus-area, x402-kite-area, or x402-trapezoid-area.

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 prerequisites, and no reference to alternative area tools. The purpose is self-evident from the name, so usage is loosely implied, but the description provides no context about when this formula applies versus the many other area calculators in the sibling set.

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