Skip to main content
Glama

Wait for owner ready

wait_for_user_ready

After request_user_action(login|2fa), poll until the page leaves the sign-in surface (or timeout). Then continue fill.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pollMsNoPolling interval in milliseconds. Default 3000. Example: 3000
sessionIdYesEphemeral co-pilot session id returned by start_browser_session. Example: 8f3c2a1b-4d5e-6789-abcd-ef0123456789
timeoutMsNoHow long to wait for sign-in in milliseconds. Default 90000. Example: 90000

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
boundaryYesEducational / non-advice boundary when the tool includes one

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate this is not a read-only operation (readOnlyHint: false) and uses an open world (openWorldHint: true). The description adds that it polls until the page leaves the sign-in surface or times out, which is useful behavioral context beyond the annotations. It doesn't mention error handling or side effects beyond 'continue fill', but the polling condition and timeout are disclosed. Given annotations carry some weight, this is solid but not exhaustive.

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 that states the trigger condition first, then the action, then the continuation. Every word earns its place; there is no fluff or repetition of schema details. It is concise and readable.

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?

The tool has an output schema, so return values are handled separately. The description covers the why, when, and what of the tool sufficiently. It could mention error behavior or default timeout values, but those are in the schema (defaults for pollMs and timeoutMs) and likely in the output schema. For a polling tool, this is reasonably complete.

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 covers 100% of the parameters, so the description doesn't need to compensate. The description mentions 'poll' and 'timeout', which map naturally to pollMs and timeoutMs, but adds no new meaning beyond what the schema provides. This is the baseline 3 for fully covered parameters.

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 states exactly what the tool does: it polls until the page leaves the sign-in surface after a login/2FA request, then continues filling. It references the sibling 'request_user_action' directly, which distinguishes it from other tools like 'fill_fields' or 'confirm_and_submit'. The verb (poll) and resource (sign-in surface) are specific, and the temporal relationship to request_user_action is clear.

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 explicitly tells the agent when to use this tool: after request_user_action(login|2fa). It also hints at the continuation step ('Then continue fill'), implying the tool is a bridge between user authentication and form filling. It doesn't explicitly list alternatives or when not to use it, but the contextual trigger is strong enough to route an agent correctly.

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
Disambiguation4/5

Each tool occupies a distinct step in the intake-to-submission pipeline, with clearly paired tools like prepare_submit_confirmation/confirm_and_submit. A few knowledge/checklist tools such as get_module_playbook, get_skill, and search_book could overlap at the margins, but their descriptions separate modules, workflow skills, and cited passages well enough.

Naming Consistency4/5

The set overwhelmingly follows lower_snake_case action_object naming like get_*, list_*, prepare_*, fill_fields, and open_portal. Minor deviations such as confirm_and_submit and wait_for_user_ready are still imperative and readable, so the naming remains predictable overall.

Tool Count3/5

At 25 tools, the server sits at the top of the 'heavy but borderline' range. The broad advisory/portal-automation scope mostly justifies the count, but several browser-session helpers and guidance/checklist tools could plausibly be consolidated without losing core capability.

Completeness4/5

The tool surface covers the full workflow: intake, risk assessment, guidance, module/skill selection, drafting and review bundles, self-serve or assisted browsing, form filling, and guarded submission. Minor gaps like updating intake data or checking post-submission status are workable rather than fatal.