Install
$ agentstack add skill-captcha-sonic-agent-skills-captchasonic-setup ✓ 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 MCP Server Setup
Set up the CaptchaSonic MCP server so your AI agent can solve CAPTCHAs.
Step 1: Check Prerequisites
Verify Node.js is installed (v18+):
node --version
If not installed, the user needs to install Node.js from nodejs.org.
Step 2: Get the API Key
Ask the user for their CaptchaSonic API key. It starts with sonic_.
If they don't have one: "Register for free at captchasonic.com to get your API key."
Step 3: Add the MCP Server
Option A: Claude Code CLI (recommended)
claude mcp add sonic --env SONIC_API_KEY=sonic_xxxx -- npx -y @captchasonic/mcp-server
Replace sonic_xxxx with the user's actual API key.
Option B: Global Install + CLI
npm install -g @captchasonic/mcp-server
claude mcp add sonic --env SONIC_API_KEY=sonic_xxxx -- sonic-mcp
Option C: Claude Desktop
Edit the Claude Desktop config file.
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json
Add this to the mcpServers section:
{
"mcpServers": {
"sonic": {
"command": "npx",
"args": ["-y", "@captchasonic/mcp-server"],
"env": {
"SONIC_API_KEY": "sonic_xxxx"
}
}
}
}
Then restart Claude Desktop.
Option D: Antigravity IDE
Add MCP server configuration in your Antigravity settings pointing to:
npx -y @captchasonic/mcp-server
with environment variable SONIC_API_KEY=sonic_xxxx.
Step 4: Verify Health Check
After adding the server, run a health check to confirm connectivity:
Tool: health_check
Arguments: {}
Expected response:
healthy: true
version: x.x.x
If the health check fails:
- Check your internet connection
- Verify Node.js is installed and
npxis available - Try running
npx -y @captchasonic/mcp-servermanually to see errors
Step 5: Verify API Key
Run a balance check to confirm the API key is valid:
Tool: get_balance
Arguments: {}
Expected response:
balance: $XX.XXXX
status: ok
errorId: 0
If errorId is 1: the API key is invalid. Double-check it at captchasonic.com.
Step 6: Done!
The CaptchaSonic MCP server is now connected. The agent has access to:
health_check— verify server is onlineget_balance— check account creditssolve_captcha— solve any CAPTCHA type
Try it: "Solve this captcha image" and provide an image path or URL.
Troubleshooting
Read references/troubleshooting.md for common issues and fixes.
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.