Skip to main content
Glama

list_commitments

List commitments, optionally filtered by state (PENDING|REVEALED|EXPIRED).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description must carry full behavioral disclosure. It only states the basic listing and filter capability, but fails to mention pagination, sorting, rate limits, permissions, or any side effects. While an output schema exists, the description itself lacks transparency about the tool's operational behavior.

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 concise sentence that front-loads the verb and resource. Every word is necessary; there is no redundancy or filler, making it easy for an AI agent to parse quickly.

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?

Given the tool's simplicity (1 optional parameter, output schema exists), the description still feels incomplete. It does not explain the default behavior when no state is provided (e.g., lists all commitments), nor does it mention pagination or result limits. For a listing tool, this context is essential for proper usage.

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

Parameters4/5

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

The schema defines 'state' as a nullable string with no enum constraints, so the description adds significant value by listing the allowed values (PENDING, REVEALED, EXPIRED). This compensates for the 0% schema description coverage, making the parameter's semantics clear.

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 action 'List' and the resource 'commitments', and specifies the optional filter with the exact allowed enum values (PENDING, REVEALED, EXPIRED). This sets it apart from sibling tools like 'commit' (create) and 'commitment_status' (single status), making the purpose unambiguous.

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?

The description does not provide any guidance on when to use this tool versus alternatives (e.g., commitment_status for a single commitment or commit for creating). It also omits context such as prerequisites or default behavior when no filter is applied.

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

Each tool has a clearly distinct purpose: committing, revealing, verifying, listing, status checking, and agent description. No overlapping functionality.

Naming Consistency4/5

Most tools follow a verb_noun pattern (commit, describe_agent, list_commitments, reveal, verify), but 'commitment_status' uses a noun_noun pattern, slightly breaking consistency.

Tool Count5/5

With 6 tools, the server is well-scoped for a notary service, covering all necessary operations without excess.

Completeness5/5

The tool set covers the full lifecycle of commitments: creation, status query, listing, revealing, and verification. No obvious gaps for the stated purpose.