Skip to main content
Glama

Add

add

Adds two numbers and returns the sum.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
aYes
bYes

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It clearly states the operation and its result, implying a pure, side-effect-free computation. It does not mention edge cases like overflow or precision, but for a simple arithmetic tool this is a minor gap.

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 a single, front-loaded sentence with zero wasted words. It states the action and the result efficiently.

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 tool is trivially simple: two numeric inputs, one numeric output. The description covers the operation and return value, and no output schema or complex preconditions exist. Nothing an agent needs to invoke it correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, so the description must compensate for parameter meaning. It only says 'two numbers' without mapping them to the named parameters a and b or adding any constraints. Since addition is commutative, this is not critical, but the description adds no real semantic value beyond the schema.

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 uses a specific verb ('adds') and names the resource ('two numbers') and the outcome ('returns the sum'). It is immediately distinguishable from sibling tools like echo and server_time, which perform entirely different operations.

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?

No explicit when-to-use or alternative guidance is provided. However, the intended usage is strongly implied by the description: use this tool when you need to add two numbers. Since none of the siblings perform addition, there is no real ambiguity.

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.4/5.0
Disambiguation5/5

Each tool performs a clearly distinct function: arithmetic, echoing text, and returning the current time. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names are simple, lowercase verbs (add, echo, server_time) following a consistent and predictable style. The naming pattern is uniform.

Tool Count5/5

With only 3 tools, the server is tightly scoped for its apparent purpose as a small utility server. Each tool serves a unique, purposeful function without bloat.

Completeness5/5

The server covers its apparent domain of basic utilities completely: numeric operation, text handling, and time retrieval. There are no obvious missing operations within this scope.

Resources