Skip to main content
Glama

Check reply

check_reply
Read-onlyIdempotent

Poll for the user's answer to a pending request_approval. Each call waits up to wait_seconds (default 20s, max 45s) server-side and returns the moment the user answers, so call it back-to-back in a loop — there's no need to add your own delay between calls. Returns pending while unanswered, answered with a choice_index once the user taps, or expired once the ask's deadline passes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
request_idYes
wait_secondsNoBounded server-side wait (default 20, max 45). The call returns early the moment the user answers.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
expires_atYes
answered_atNo
choice_indexNo0-based index into the choices array YOU sent in request_approval. The server never stores the labels — map the index yourself.

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses important behaviors beyond the annotations: server-side waiting up to wait_seconds, early return on user response, and the three possible return states. It also explains the default and maximum wait durations, which is exactly the kind of runtime behavior an agent needs to know. Annotations already signal read-only/idempotent/non-destructive, and the description enriches that with polling semantics.

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 information-dense paragraph with no filler. It front-loads the core purpose, then packs in the wait behavior, looping guidance, and return-state semantics in a logical order. Every sentence earns its place.

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?

Given the two parameters, a blocking wait, and three return states, the description covers all essential behavioral context an agent needs to call the tool confidently. The output schema exists and the description also summarizes the return states, making the tool's expected behavior fully specified.

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 input schema documents wait_seconds but leaves request_id essentially bare beyond being a required string. The description compensates by making wait_seconds meaningful ('waits up to wait_seconds', default 20s, max 45s) and by tying the request to 'a pending request_approval.' It does not explicitly say the request_id is the value returned by request_approval, but the intended relationship is 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 opens with a specific verb and resource: 'Poll for the user's answer to a pending request_approval.' This clearly distinguishes the tool from its sibling request_approval by framing it as the polling counterpart. The return states (pending, answered, expired) further pin down exactly what the tool observes.

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 operational guidance: call it back-to-back in a loop and do not add your own delay, because each call waits server-side and returns as soon as the user answers. It does not explicitly state when to use an alternative tool, but the connection to request_approval is clear enough via context.

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

Every tool has a clearly distinct purpose: reminders (remind_me/cancel_reminder), approvals (request_approval/check_reply), notifications (send_notification), files (send_file), device info (list_devices), shared items (get_shared_items), and phone locating (find_my_phone). No two tools overlap in action or resource.

Naming Consistency5/5

All nine tools follow a consistent snake_case verb_noun pattern, e.g., cancel_reminder, send_notification, list_devices. There are no deviations or mixed conventions.

Tool Count5/5

Nine tools is well-scoped for a phone-communication server. Each tool addresses a distinct functional need without redundancy or bloat, making the set feel purposeful and easy to navigate.

Completeness5/5

The surface covers the essential lifecycle for its domain: scheduling and canceling reminders, requesting and polling approvals, sending notifications and files, reading user-shared items, listing devices, and locating the phone. No obvious gaps or dead ends exist.

Resources