Smithery
solve_captcha
Automatically solve CAPTCHAs on the current page using CapSolver AI. Supports Cloudflare Turnstile, reCAPTCHA v2/v3, and hCaptcha. Detects the CAPTCHA type and sitekey automatically, sends it to CapSolver for solving, injects the token, and optionally submits the form. Use this when a CAPTCHA blocks form submission during browser automation.
Remote relievedattention992-smithery/screenshotsmcp
Other tools also called solve_captcha?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"type": {
"enum": [
"turnstile",
"recaptchav2",
"recaptchav3",
"hcaptcha"
],
"type": "string",
"description": "CAPTCHA type. Auto-detected if omitted."
},
"pageUrl": {
"type": "string",
"description": "The page URL. Auto-detected from current page if omitted."
},
"sitekey": {
"type": "string",
"description": "The CAPTCHA sitekey. Auto-detected from the page if omitted."
},
"sessionId": {
"type": "string",
"description": "Session ID from browser_navigate"
},
"autoSubmit": {
"type": "boolean",
"default": true,
"description": "Automatically click the submit button after solving (default: true)"
}
}
}