Skip to main content
Glama

check_registration

Check the status of a pairing code from register_agent. On the first poll after the user approves, the response includes the api_key exactly once — store it immediately in your secret mechanism — plus paired_with, the account the agent is now connected to, which you MUST show the user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
claim_tokenNoThe claim_token returned by register_agent; required to receive the api_key
pairing_codeYesThe pairing code returned by register_agent

TDQS

A4.2/5.0
Behavior4/5

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

It discloses critical, non-obvious behavior: the api_key appears exactly once, must be stored immediately, paired_with identifies the connected account, and the user must be shown that account. This goes well beyond the minimal annotations (readOnlyHint false).

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?

Two sentences: the first states purpose, the second immediately highlights the critical response handling. No filler or redundant restatement of schema fields.

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?

With no output schema, the description covers the essential return values (api_key, paired_with) and required user action. It doesn't describe pending states or error scenarios, but for a small polling tool it is largely self-contained.

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?

Both parameters already have full descriptions in the schema, so the description adds little beyond naming pairing_code as coming from register_agent. It doesn't explain claim_token in its own words or add any new parameter-level semantics.

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?

Description opens with a specific verb and resource: 'Check the status of a pairing code from register_agent.' This clearly distinguishes it from siblings like cancel_registration or register_agent by indicating a polling/read step in the registration flow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear usage context: poll after register_agent, with a specific behavior on the first poll after approval. It does not explicitly list exclusions or alternatives, but the intended workflow is evident.

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 has a distinct role in the registration lifecycle or notification sending. register_agent starts, check_registration polls, cancel_registration revokes within a limited window, revoke_self permanently revokes with the API key, and yo sends the notification. Overlap between cancel and revoke is clearly delineated by time and authentication context.

Naming Consistency4/5

The core tools follow a verb_noun pattern (register_agent, check_registration, cancel_registration, revoke_self). The tool 'yo' is an exception but functions as a domain-specific verb, and the naming is otherwise predictable. Minor inconsistency exists between 'agent' and 'registration' but does not hinder comprehension.

Tool Count5/5

With five tools, the server is well-scoped for the Yo integration. Each tool serves a necessary function in the registration and notification flow without redundancy or bloat. The count is appropriate for the domain.

Completeness5/5

The tool set covers the complete lifecycle: registering an agent, checking status, canceling/revoking, and sending a Yo. There are no obvious missing operations for the intended domain, and the flow from registration to notification is fully supported.