Skip to main content
Glama

captcha_get_result

Read-onlyIdempotent

Consulta o resultado de uma task de captcha já criada, pelo task_id. Não é cobrado (a cobrança ocorre na solve que criou a task).

Bulk support: accepts task_ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes
task_idsNo

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable context: no charge for this operation (billing happens at solve), and bulk support via task_ids. This goes beyond annotations and clarifies cost behavior, which is useful for an agent.

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 two sentences, front-loaded with the core purpose, and includes a separate note for bulk support. Every sentence earns its place with no redundancy.

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?

Given the tool's simplicity (2 params, no output schema), the description covers the essential purpose, billing behavior, and bulk capability. It doesn't explain return format, but with no output schema and a straightforward query operation, this is acceptable. The main gap is parameter relationship details, but overall it's complete enough for an agent to use correctly.

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?

Schema description coverage is 0%, so the description must compensate. It explains task_id is the identifier for an existing captcha task and mentions task_ids for bulk execution, but doesn't detail format, constraints, or relationship between the two parameters (e.g., whether task_ids is an alternative to task_id). The description adds some meaning but leaves gaps.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool queries the result of an existing captcha task by task_id, which is a specific verb+resource combination. It distinguishes from sibling solve tools by focusing on result retrieval rather than creation, though it doesn't explicitly name alternatives.

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 implies usage after a task is created via a solve tool, and notes billing occurs at solve time, not here. It mentions bulk support for batched execution, providing clear context. However, it doesn't explicitly state when not to use it or name alternative tools.

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

B3.4/5.0
Disambiguation3/5

The captcha_solve_* tools are clearly distinct by captcha type, and captcha_get_result is separate. However, authenticate, connect, and toolkit_info overlap in purpose (auth/status), and marketplace bundles a huge range of unrelated functionality, creating ambiguity about which tool to use for platform management.

Naming Consistency2/5

The captcha tools follow a consistent captcha_solve_<type> pattern, but the rest of the set uses bare verbs (connect, authenticate, marketplace) or inconsistent forms (toolkit_info, show_version). Mixing prefixed captcha tools with generic platform tools makes the naming scheme disjointed.

Tool Count2/5

At 12 tools the raw count is reasonable, but the server is named 'Captcha Solver' yet includes a large platform/marketplace tool and several generic management tools. The captcha-specific scope is small (7 tools), while the extra tools feel bolted on and dilute the server's purpose.

Completeness3/5

The captcha solving surface covers main types (image, hCaptcha, reCAPTCHA v2/v3, Turnstile) plus result retrieval, which is decent. However, there is no dedicated balance/credit check or captcha task listing, and the broad marketplace/toolkit functionality makes it unclear what domains the server is supposed to fully cover.