capskip-mcp
OfficialProvides tools to solve Cloudflare Turnstile challenges, returning a token for form submission.
Provides tools to solve Google reCAPTCHA v2/v3/Enterprise challenges, returning a token for form submission.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@capskip-mcpsolve the reCAPTCHA on this page and submit the form"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CapSkip MCP Server — Unlimited Captcha Solver for AI Agents
A captcha solver MCP server that lets AI agents solve reCAPTCHA, Cloudflare Turnstile, GeeTest and image captchas instead of stalling on them.
Works with Claude Desktop, Claude Code, Cursor, VS Code, and any Model Context Protocol client. Powered by CapSkip — a local captcha solver that runs on your own machine, licensed once rather than billed per solve.
npx -y capskip-mcpWhat this solves
An AI agent driving a browser hits a captcha and stops. This server gives it five tools so it can read the sitekey, solve the challenge, and carry on — without a human stepping in and without a per-solve API bill.
CapSkip runs as a desktop app exposing a captcha-solving HTTP API on 127.0.0.1:8080. capskip-mcp is a thin translation layer over that API: the fifth official CapSkip client, alongside the Python, Node.js, PHP and .NET SDKs.
Related MCP server: ma-browser
Supported captcha types
Captcha | Tool | Notes |
reCAPTCHA v2 solver (checkbox) |
| Returns a |
reCAPTCHA v2 invisible solver |
| Pass |
reCAPTCHA Enterprise solver |
| Pass |
reCAPTCHA v3 solver |
| Pass |
Cloudflare Turnstile solver |
| Widget and interstitial challenge pages |
GeeTest v3 solver |
| Slide puzzle; returns challenge/validate/seccode |
Image captcha solver (text/OCR) |
| File path, URL, data URI, or base64 |
Not supported: hCaptcha and FunCaptcha/Arkose. There is no tool for them and capskip_solve_recaptcha will not work on one. hCaptcha is the easiest to misidentify since it also carries a data-sitekey — check for class="h-captcha" or a js.hcaptcha.com script first.
Try them against live widgets on the captcha demo pages.
Quick start (5 minutes)
1. Install the CapSkip captcha solver
Download and run the CapSkip desktop app from capskip.com. Leave it running in the background.
In CapSkip settings, note the API port (default 8080) and API key (optional — if key validation is disabled, any string works).
2. Add capskip-mcp to your MCP client
No install step — npx fetches and runs it on demand.
{
"mcpServers": {
"capskip": {
"command": "npx",
"args": ["-y", "capskip-mcp"],
"env": {
"CAPSKIP_HOST": "127.0.0.1",
"CAPSKIP_PORT": "8080",
"CAPSKIP_API_KEY": "capskip"
}
}
}
}MCP client | Config file | Example |
Claude Desktop |
| |
Claude Code |
| |
Cursor |
| |
VS Code |
|
3. Restart your client
It should list five tools, all prefixed capskip_.
4. Ask your agent to solve a captcha
"Call capskip_status to confirm CapSkip is running, then solve the reCAPTCHA on this page and submit the form."
The agent reads the sitekey off the page, calls capskip_solve_recaptcha, and places the returned token in the page's g-recaptcha-response field.
Why a local captcha solver
Cloud captcha APIs bill per solve, so an agent that retries is an agent that costs money, and every page URL and sitekey you solve leaves your network.
CapSkip runs on your machine:
Unlimited captcha solving — licensed once, no per-solve fees, no credit balance to top up
Local by default — the solver talks to
127.0.0.1; nothing is proxied through a third-party queueNo rate limit per key — throughput is bounded by your machine, not a vendor's plan tier
Fast — image captchas return in well under a second; typical reCAPTCHA v2 solves land in 30–45s
Using an existing 2captcha or Anti-Captcha integration?
CapSkip exposes the familiar in.php / res.php endpoints, so it works as a 2captcha API alternative — point your existing client at 127.0.0.1:8080 and keep your code. See the migration notes. This MCP server is the equivalent for AI agents rather than scripts.
Tools
Tool | Purpose | Required arguments |
| Check whether the CapSkip desktop app is running and reachable | none |
| Read the text out of a distorted-text captcha image |
|
| Solve reCAPTCHA v2 or v3, including invisible and Enterprise |
|
| Solve a Cloudflare Turnstile widget or challenge page |
|
| Solve a GeeTest v3 slide-puzzle captcha |
|
There is no
min_scoreparameter oncapskip_solve_recaptcha. reCAPTCHA v3 scores are assigned by Google from signals no solver has access to — local or cloud, none can raise a score after the fact. Amin_scoreoption would promise control that does not exist, so it is deliberately left out. Passing it anyway is rejected as an unrecognized key, not silently ignored.
Full parameter tables and worked examples: API Reference.
Guide | Description |
Every captcha type — how to recognize it, what to read off the page, what call to make, where the answer goes | |
Full setup: CapSkip app, client config, first solve | |
Every tool, parameter, and return shape | |
Connection errors, timeouts, rejected tokens |
Browser automation: Playwright, Puppeteer and Selenium
This server solves the captcha and hands back a token; your agent's existing browser tooling does the driving. The pattern is the same whichever you use:
Read the sitekey from the page (
data-sitekey, or the widget's config object).Call the matching
capskip_solve_*tool with that sitekey and the page URL.Write the token into the response field and submit.
// The agent does this via its browser tool after capskip_solve_recaptcha returns
document.querySelector('#g-recaptcha-response').value = TOKEN;For non-agent scripts, use the language SDKs directly — see the Playwright, Puppeteer and Selenium guides.
Configuration
Variable | Default | Meaning |
|
| Any string when key validation is off |
|
| CapSkip host |
|
| API port from CapSkip settings |
|
| Default |
|
| Default |
|
| Max seconds between polls |
CLI flags override environment variables, which override the defaults:
capskip-mcp --api-key <key> --host <host> --port <port> --timeout <seconds> \
--recaptcha-timeout <seconds> --polling-interval <seconds>An invalid value (non-numeric port, port outside 1–65535, a negative or out-of-range timeout, an unknown flag) fails at startup naming the offending flag or variable, rather than surfacing later as a confusing solve failure.
What you get back
Every solve tool returns a human-readable text block and structuredContent matching its declared output schema:
{
"captchaId": "12345",
"code": "03AGdBq26f...",
"solveSeconds": 11.8
}capskip_solve_turnstileaddsuserAgent. Submit the token with this exact User-Agent — Cloudflare rejects a token replayed under a different one.capskip_solve_geetestaddschallenge,validateandseccode, to post back exactly as the site's own front-end would;codekeeps the raw JSON string CapSkip returns.
Long solves emit MCP progress notifications, so a 45-second reCAPTCHA does not trip your client's tool-call timeout.
Errors
Every tool call returns isError: true with readable text on failure — never a stack trace or a bare protocol error — so the model can read the message and correct course.
Cause | Message |
CapSkip unreachable |
|
Another process holds the port |
|
Wrong API key |
|
|
|
|
|
|
|
|
|
|
|
Solve exceeded |
|
Unknown or misspelled parameter | Rejected before the call reaches CapSkip, naming the key, e.g. |
See Troubleshooting for fixes.
FAQ
Can AI agents solve captchas?
Not on their own — a model cannot produce a valid reCAPTCHA or Turnstile token. It needs a solver. This MCP server connects your agent to CapSkip so it can request a real token and continue the task.
Does this work with Claude, Cursor and VS Code?
Yes. It is a standard MCP stdio server, so it works with any Model Context Protocol client, including Claude Desktop, Claude Code, Cursor and VS Code. Config examples for each are in examples/.
Is there a free captcha solver here?
The MCP server is MIT-licensed and free. It requires the CapSkip desktop app, which is licensed once and then solves without per-solve charges — unlike cloud APIs that bill per captcha.
Which captchas can it solve?
reCAPTCHA v2 (checkbox and invisible), reCAPTCHA v3, reCAPTCHA Enterprise, Cloudflare Turnstile, GeeTest v3, and image/text captchas. hCaptcha and FunCaptcha/Arkose are not supported.
Why does my reCAPTCHA v3 token get a low score?
Google assigns v3 scores from signals such as IP reputation and browsing history. A solver returns a valid token, but cannot raise the score. If a site enforces a high threshold, solve from a cleaner IP — a proxy is supported on the reCAPTCHA, Turnstile and GeeTest tools.
Does it need my captcha to be on a public page?
Yes for widget captchas — CapSkip loads the page URL you pass. Image captchas need only the image, which can be a local file.
Can I use it with Playwright or Puppeteer?
Yes. The agent drives the browser; this server supplies the token. See the browser automation section.
Requirements
Node.js 18 or newer
The CapSkip desktop app installed and running (download)
Links
Captcha demo pages — live reCAPTCHA, Turnstile, GeeTest and image widgets
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityBmaintenanceA local MCP server that lets AI agents bypass bot detection, geo-restrictions, and JavaScript rendering challenges when scraping the web, backed by ScraperAPI's services285MIT- Alicense-qualityBmaintenanceMCP server that lets AI agents use your real browser as an API, accessing any website with your login state, no keys or scrapers needed.1MIT
- Alicense-qualityBmaintenanceAn MCP server that provides an undetectable Playwright browser to bypass Cloudflare and other bot detection systems, enabling AI agents to navigate and scrape web pages without being blocked.10MIT
- AlicenseAqualityDmaintenanceAn MCP server that lets AI agents autonomously acquire, store, verify, and manage API keys for various services.710MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
An MCP server that integrates with Discord to provide AI-powered features.
MCP server for Flux AI image generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/capskip/capskip-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server