Install
$ agentstack add skill-captcha-sonic-agent-skills-agent-skills ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
CaptchaSonic — AI CAPTCHA Solving Skill
Give your AI agent the ability to solve any CAPTCHA using the CaptchaSonic API.
What This Skill Provides
This skill connects your agent to the CaptchaSonic MCP server, which exposes three tools:
| MCP Tool | What It Does | API Key Required | |---|---|---| | health_check | Verify the CaptchaSonic API is online | No | | get_balance | Check your account balance in USD | Yes | | solve_captcha | Submit a CAPTCHA image and get the solution | Yes |
Supported CAPTCHA Types
- PopularCaptcha — image grid challenges (select all traffic lights, etc.)
- reCAPTCHA v2 — Google grid select
- reCAPTCHA v3 — score-based token
- Cloudflare Turnstile — token-based (async)
- Cloudflare Challenge — full page challenge
- Geetest v3/v4 — slide, click, nine-grid
- AWS WAF — image classification
- TikTok — rotation/click
- Binance — slide puzzle
- OCR — image-to-text recognition
Quick Setup
1. Get an API Key
Register at captchasonic.com and get your API key (starts with sonic_).
2. Add the MCP Server
Claude Code CLI:
claude mcp add sonic --env SONIC_API_KEY=sonic_xxxx -- npx -y @captchasonic/mcp-server
Claude Desktop — add to your claude_desktop_config.json:
{
"mcpServers": {
"sonic": {
"command": "npx",
"args": ["-y", "@captchasonic/mcp-server"],
"env": {
"SONIC_API_KEY": "sonic_xxxx"
}
}
}
}
3. Verify It Works
Ask your agent: "Run a health check on CaptchaSonic"
The agent will call the health_check MCP tool and return the server status and version.
Sub-Skills
For detailed workflows, see:
- captchasonic-solve — Solve any CAPTCHA type with step-by-step guidance
- captchasonic-balance — Check account balance and credit status
- captchasonic-setup — First-time MCP server installation and verification
Reference Documentation
references/mcp-setup.md— Detailed MCP installation for all platformsreferences/captcha-types.md— All supported types with required parametersreferences/solution-types.md— How to interpret each solution formatreferences/troubleshooting.md— Common errors and fixes
Environment Variables
| Variable | Description | Default | |---|---|---| | SONIC_API_KEY | Your CaptchaSonic API key (sonic_xxxx) | — (required) | | SONIC_BASE_URL | Override API server URL | https://api.captchasonic.com |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Captcha-Sonic
- Source: Captcha-Sonic/Agent-skills
- License: MIT
- Homepage: https://captchasonic.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.