captcha.cc Human Verification
Server Details
Human verification CAPTCHA with visual and selective-listening audio challenges.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 3 of 3 tools scored.
Each tool targets a clearly distinct stage of captcha integration: creating a challenge, generating a client-side widget snippet, and providing a server-side verification example. No two tools overlap in purpose, so an agent can reliably select the right one.
Tool names follow a verb_noun pattern with clear verbs ('create', 'make'), but two tools use 'make' while one uses 'create', which is a minor inconsistency. However, the pattern is still predictable and readable.
Three tools is well-scoped for a captcha integration helper server, covering the essential client, server, and challenge creation aspects without unnecessary bloat.
The tool set covers the core workflow: create a challenge, get a widget snippet, and verify a proof token. Minor gaps like challenge status or debugging tools are absent, but the essential lifecycle is complete for typical integration tests.
Available Tools
3 toolscreate_challengeCreate ChallengeAInspect
Create a live captcha.cc challenge for a site key and allowed hostname. Useful for smoke tests and integration checks.
| Name | Required | Description | Default |
|---|---|---|---|
| hostname | Yes | Hostname configured on the captcha.cc site. | |
| site_key | Yes | Public captcha.cc site key. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly=false, destructive=false, and idempotent=false. The description adds that the challenge is 'live' but does not disclose additional behavioral traits such as expiration, rate limits, or authentication requirements. It doesn't contradict annotations but provides only modest extra context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler. The main action is front-loaded, and the use case is provided in a second short sentence. Efficient and scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, with two fully documented parameters and annotations covering the safety profile. However, there is no output schema, and the description does not mention what the response looks like or any error conditions. This leaves a notable gap for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description mentions 'site key and allowed hostname,' reinforcing the two parameters, but adds no new semantic detail beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the specific action and target: 'Create a live captcha.cc challenge for a site key and allowed hostname.' Distinguishes from siblings: make_siteverify_request verifies solutions and make_widget_snippet generates widget code, while this tool creates a challenge.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit use case: 'Useful for smoke tests and integration checks.' This gives clear context for when to use the tool, though it doesn't explicitly exclude alternatives or mention sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
make_siteverify_requestMake Siteverify RequestARead-onlyIdempotentInspect
Return a server-side fetch example for redeeming a captcha.cc proof token exactly once.
| Name | Required | Description | Default |
|---|---|---|---|
| secret_env_var | No | CAPTCHA_CC_SECRET_KEY | |
| proof_token_expression | No | req.body.proofToken |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds valuable context by clarifying it 'returns an example' rather than performing an actual request, and emphasizes 'exactly once' redemption. This goes beyond the structured annotations and helps the agent understand the tool's output nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded with the action ('Return a server-side fetch example') and includes only essential detail ('redeeming a captcha.cc proof token exactly once'). Every word earns its place, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and the description clearly conveys its purpose and output nature. However, the lack of parameter documentation is a notable gap. The presence of an output schema is not required, but without it, the description could still explain what the returned example looks like or provide parameter context, making it only minimally complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description does not explain the parameters (secret_env_var, proof_token_expression) or their roles. While the parameter names offer some hints, the description fails to compensate for the missing schema descriptions, leaving the agent without clear guidance on how to use the two parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Return') and identifies a clear resource (server-side fetch example for redeeming a captcha.cc proof token exactly once). It distinguishes itself from sibling tools (create_challenge, make_widget_snippet) by focusing on server-side verification code generation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. It doesn't mention scenarios like server-side verification needs or exclude client-side options, and sibling tools are not referenced. The usage context is implied from the purpose but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
make_widget_snippetMake Widget SnippetARead-onlyIdempotentInspect
Return a minimal browser SDK snippet for mounting captcha.cc and submitting the proof token to an application endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| form_id | No | Form id to attach submit handling to. | contact-form |
| site_key | Yes | Public captcha.cc site key, for example pk_live_xxx. | |
| element_id | No | DOM element id where the widget should mount. | captcha |
| submit_path | No | Application endpoint that receives the proof token. | /submit-form |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds functional context by explaining that the snippet mounts the widget and submits the proof token, which is consistent with a read-only code generation tool. However, it does not disclose edge cases or limitations (e.g., snippet language or integration steps), though this is minor for a simple generator.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is concise and front-loaded with the primary action. Every word adds value, with no redundancy or filler. It is appropriately sized for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple nature of the tool and the absence of an output schema, the description adequately states what is returned (a snippet) and what it does. The 100% schema coverage for parameters means the description need not elaborate on parameter usage. It is complete for a code generation tool, though it could arguably mention prerequisites or output format, but those are not critical.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear descriptions for site_key, form_id, element_id, and submit_path. The tool description itself provides no parameter-level details, but the schema fully covers meaning, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Return') and clearly identifies the resource ('minimal browser SDK snippet') and its function ('mounting captcha.cc and submitting the proof token'). This distinguishes it from siblings like create_challenge (server-side challenge creation) and make_siteverify_request (server-side verification).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage—when you need a client-side snippet to mount the widget and submit proof tokens—but it does not explicitly state when NOT to use it or mention alternative sibling tools. There is no exclusion or direct comparison, so guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityDmaintenanceA multi-agent human-computer interaction system that enables natural interaction through integrated visual recognition, speech recognition, and speech synthesis capabilities.22Apache 2.0

5arz Proof-of-Humanofficial
Alicense-qualityCmaintenanceEnables agents to prove and verify that a real, unique human performed an action, issuing machine-readable signed credentials with public verification.Apache 2.0- AlicenseAqualityCmaintenanceHuman-as-a-Service for AI agents. When your agent is blocked by a task that requires a real human — accepting ToS, creating accounts, submitting forms, identity verification — it calls NeedHuman. A human completes the task and returns the result with proof.3781MIT
- AlicenseAqualityCmaintenanceEnables AI agents to dispatch human verifiers for physical world tasks like product authentication, property inspection, and document verification, returning timestamped evidence reports.347MIT