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 and does state the core behavior: addition and returning a sum. It does not address edge cases or output shape, but for a pure arithmetic operation the main behavior is transparent.

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 eight-word sentence with no filler. The action and result are immediately front-loaded.

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 two-operand arithmetic tool, the description plus input schema cover what to pass and what to expect. It omits explicit return format and error behavior, but the simplicity of the operation makes those omissions minor.

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 no per-parameter descriptions, and the description only says 'two numbers' without naming a and b or adding constraints. However, addition is commutative, so the missing role differentiation is not a practical issue.

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 phrase 'Adds two numbers and returns the sum' uses a specific verb and outcome. It clearly identifies the operation and is easily distinguishable from echo and server_time.

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?

There is no explicit when-to-use or alternatives statement. The intended use is implied by the description and tool name, but selection guidance is left to obviousness rather than being stated.

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

A3.8/5.0
Disambiguation5/5

Each tool performs a completely distinct function—numeric addition, text echoing, and time retrieval—with zero overlap in purpose. An agent would never confuse these tools.

Naming Consistency3/5

add and echo are single-word verbs, while server_time is a noun phrase with an underscore, creating a slight inconsistency. The names are readable and lowercase, but the pattern is not uniformly maintained.

Tool Count3/5

Three tools falls within the acceptable range, but the tools are so unrelated that the set feels like a random collection rather than a purposeful server. A more focused server would either have more tools around a coherent domain or make a clearer case for each tool.

Completeness2/5

There is no identifiable domain or workflow to assess coverage against; the tools are disconnected and provide only trivial operations. As a usable server for any real task, it offers almost no meaningful capability surface.

Resources