AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Captchasonic Setup

skill-captcha-sonic-agent-skills-captchasonic-setup · by Captcha-Sonic

Set up the CaptchaSonic MCP server for the first time. Installs the server, configures environment variables, and verifies connectivity. Use when a user wants to start using CaptchaSonic with their AI agent.

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-captcha-sonic-agent-skills-captchasonic-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-captcha-sonic-agent-skills-captchasonic-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Captchasonic Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 npx is available
  • Try running npx -y @captchasonic/mcp-server manually 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 online
  • get_balance — check account credits
  • solve_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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.