Skip to main content
Glama

check_signup

Poll after start_signup. Returns { status: "pending" } until the user presses the button in the email, then { status: "ready", apiKey, setup } exactly once; the pollToken is dead after that. The setup field holds the exact config or command for this client plus what to tell the user (restart, or remove-and-re-add on Desktop). Poll every 5 seconds for up to 15 minutes without ending your turn. On ready, apply the setup snippet at once, then call create_client for the product.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pollTokenYesThe pollToken returned by start_signup.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the annotations, the description discloses that the response arrives exactly once, that the pollToken is dead after ready, and that the agent must act on the setup snippet immediately. These are critical behavioral details not inferable from annotations alone.

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 dense but every sentence contributes: operation, expected responses, token lifecycle, polling cadence, timeout, and next action. It is front-loaded with the most important instruction and contains no filler.

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?

For a polling tool with no output schema, this covers everything an agent needs: what triggers readiness, the exact return states, once semantics, token expiration, polling interval, timeout guidance, and the follow-up call. Nothing essential is missing.

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 already fully describes pollToken as returned by start_signup, so the baseline is solid. The description adds extra value by warning that the token is invalid after ready, which is parameter lifecycle information 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 first phrase 'Poll after start_signup' states the exact operation and sequencing, and the description then enumerates the two return states (pending and ready), making it unmistakable what this tool does. It clearly positions itself as the follow-up to the sibling start_signup tool.

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

Usage Guidelines5/5

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

It provides concrete instructions: poll every 5 seconds, continue until ready, don't end the turn, then apply the setup and call create_client. This is exceptional routing and workflow guidance for an agent.

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.