From zero to solving in under 5 minutes.
One MCP config line connects uncaptcha.dev to your AI agent environment.
captcha_detect auto-finds the site key and type. No manual inspection needed.
Token injected into the page. Your agent continues without interruption.
All major variants covered.
MCP for agents. REST for apps. Your choice.
MCP (Claude Code / Cursor)
bash# Register with Claude Code (one line)
claude mcp add uncaptcha -- npx uncaptcha-mcp
# Set your API key
export UNCAPTCHA_API_KEY=ac-your-key-hereREST API (Python)
pythonimport requests
# Step 1: Auto-detect site key
detect = requests.post(
'https://api.uncaptcha.dev/tools/extract-sitekey',
json={'url': 'https://example.com/login'}
).json()
# Step 2: Solve with detected key
res = requests.post(
'https://api.uncaptcha.dev/v1/solve/sync',
headers={'X-API-Key': 'ac-xxx'},
json={
'type': detect['primary']['type'],
'siteKey': detect['primary']['siteKey'],
'pageUrl': 'https://example.com/login'
}
)
print(res.json()['token']) # 03AGdBq...100 free solves. No credit card required.
Starter
1,000 solves/mo
$0.012 per extra solve
Pro
5,000 solves/mo
$0.010 per extra solve
Korean users: ₩12,900 / ₩39,900 via TossPayments — 한국어 페이지
100 free solves. No credit card. Cancel anytime.
Create Free Account →