Skip to main content
Glama
Conorirish

langroid-captcha-solver-mcp-tool

by Conorirish

How to Add a CAPTCHA Solver MCP Tool to Langroid

How to Add a CAPTCHA Solver MCP Tool to Langroid

Introduction

English · 简体中文 · 日本語 · Español · Português · 한국어

Langroid agents can call tools during an authorized workflow. When a Langroid agent reaches a CAPTCHA while running an authorized browser or data task, the workflow needs a clear checkpoint instead of an uncontrolled retry loop. This repository shows how to connect a bounded solver tool, validate its result, and stop for human review when the request is unsafe or incomplete. The example naturally connects CapSolver only after explicit authorization.

Related MCP server: permitd MCP Server

What this repository demonstrates

  • a verified MCP ToolMessage adapter integration boundary;

  • typed challenge input and structured output;

  • one-attempt budget, 45-second default timeout, and result validation;

  • fixture-first tests with no real key, target, or solver request;

  • a manual-review result for denied, unsupported, exhausted, or malformed requests.

Quick start

python -m venv .venv
source .venv/bin/activate
pip install -e . pytest
pytest -q
python scripts/smoke.py

Minimal call

from captcha_solver_tool import solve_checkpoint

result = solve_checkpoint({
    "task_id": "authorized-qa-42",
    "origin": "https://example.test",
    "challenge_type": "recaptcha_v2",
    "authorized": True,
})
print(result["status"])

See src/captcha_solver_tool/adapter.py for the Langroid boundary. Production code should implement a transport using the official CapSolver API overview, createTask, and getTaskResult contracts.

Control flow

  1. Detect a supported verification checkpoint.

  2. Confirm the target and purpose are authorized.

  3. Spend at most one solving attempt.

  4. Validate a ready result before continuing.

  5. Stop for a person on any error, timeout, denial, or ambiguity.

Responsible use

Use this example only with public data, systems you own, or targets where you have explicit permission. Respect site terms, rate limits, privacy obligations, and data-retention rules. Do not use it for account creation at scale, access controls, private data, credential collection, or avoiding platform safeguards.

Project status

The adapter contract and offline behavior are tested. No live Langroid model session and no real CapSolver request are performed by the test suite. This is an independent educational example and does not imply an official partnership.

Conclusion

The example keeps authorization, attempt budgets, result validation, and human stopping explicit. Use the official CapSolver documentation when replacing the fixture transport.

Disclosure

Developer sharing CapSolver integration examples.

License

MIT. See LICENSE.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Conorirish/langroid-captcha-solver-mcp-tool'

If you have feedback or need assistance with the MCP directory API, please join our Discord server