Sponsored by Deepsite.site

Siliconbridge

Created By
aataqi-boop2 months ago
Human-in-the-loop API for autonomous AI agents. When your agent hits a CAPTCHA, needs KYC verification, a phone call, or any task requiring human judgment, SiliconBridge connects it to a real human operator. 22+ services starting at $1, with L402 payments, Stripe, and crypto support.
Overview

SiliconBridge — Human-in-the-Loop API for AI Agents

PyPI npm License: MIT

When your AI agent needs a phone call made, can't pass 2FA, or needs someone to browse a URL — SiliconBridge routes it to a real human operator who solves it in <60 seconds via API.

Multiple services from $1. No subscriptions. MCP-native. Wallet/Nostr signup. Crypto payments.

Website · API Docs · Dashboard · Operator Marketplace · Pricing


Why SiliconBridge?

Every agent framework talks about human-in-the-loop, but they all punt on the hard part: where do the humans come from?

  • HumanLayer gives you approval UIs — but you still need to approve it yourself
  • gotoHuman gives you review dashboards — but you review the content yourself
  • SiliconBridge gives you actual human strangers who make phone calls, verify identities, browse websites, and handle real-world tasks

Your agent submits a task. A human solves it. Your agent gets the result. That's it.

Quick Start

1. Sign Up (zero email, instant, $10 free credits)

# With email (optional)
curl https://siliconbridge.xyz/api/signup

# With crypto wallet (no email needed)
curl -X POST https://siliconbridge.xyz/api/signup/wallet \
  -H "Content-Type: application/json" \
  -d '{"wallet_address": "0xYOUR_WALLET"}'

# With Nostr (no email needed)
curl -X POST https://siliconbridge.xyz/api/signup/nostr \
  -H "Content-Type: application/json" \
  -d '{"npub": "npub1..."}'

2. Install SDK

pip install siliconbridge     # Python
npm install siliconbridge     # JavaScript/TypeScript

3. Use It

from siliconbridge import SiliconBridge

sb = SiliconBridge(api_key="sb_your_key")

# Browse a URL and get clean text ($1)
result = sb.submit_task("web_browse", {
    "url": "https://example.com/article",
    "instruction": "Extract the main content"
})

# Send a message via Gmail/Telegram/Slack ($1)
result = sb.submit_task("send_message", {
    "channel": "gmail",
    "to": "user@example.com",
    "subject": "Hello",
    "body": "Sent by your agent"
})

# Get an OTP/2FA code relayed ($1.50)
code = sb.request_otp("github")

# Human approval gate ($3)
approved = sb.request_approval("Deploy to production?")

# Check balance
balance = sb.check_balance()
import { SiliconBridge } from 'siliconbridge';

const sb = new SiliconBridge('sb_your_key');

const otp = await sb.requestOtp('github');
const approved = await sb.requestApproval('Ship it?');

Services & Pricing

$1 Digital Bridge Services

ServiceTypeWhat It Does
Web Browseweb_browseHuman scrapes a URL and returns clean text
Send Messagesend_messageHuman sends via Gmail/Telegram/Slack/SMS
Calendar Pushcalendar_pushHuman creates event in Google Calendar/Notion/Outlook
Memory Storememory_storeStore persistent data in encrypted DB
Memory Retrievememory_retrieveRetrieve stored data
Smart Homesmart_home_actionToggle IoT devices (lights, Sonos, thermostat)

Verification & Approval Services

ServiceTypePrice
OTP / 2FA Relayotp$1.50
Phone Verificationphone_verification$1.50
Human Approvalapproval$3.00
Human Approval Gatehuman_approval_gate$3.00
Content Reviewcontent_review$3.00
Custom Taskcustom$5.00

Naples: Eyes in the World

MissionTypePrice
Live Streamnaples_recon$1/min
Photo Reconnaples_photo_recon$3 (up to 10 photos)
Location Scoutnaples_location_scout$5
Drone FlyoverQuote-based$1 deposit

Quote-Based Infrastructure ($1 deposit)

agent_storage · agent_clone · compute · phone_call · btc_wallet_setup · domain_registration · cloud_account · smart_contract · mailing_address · 3d_printing · robot_rental

Chrome Extension

Operators accept and complete tasks via a lightweight Chrome extension:

Download Extension

Dashboard

Check your balance, tier, task history, and usage stats:

Open Dashboard

Operator Marketplace

Browse 11,000+ human operators by skill, location, and availability. Real operators with verified profiles appear alongside the marketplace:

Browse Operators

Want to earn money completing tasks? Become an Operator

Integrations

MCP Server (Claude, Cursor, etc.)

Add to your MCP config:

{
  "mcpServers": {
    "siliconbridge": {
      "url": "https://siliconbridge.xyz/mcp",
      "headers": {
        "X-API-Key": "sb_your_key"
      }
    }
  }
}

OpenClaw

clawhub install siliconbridge

LangChain

from siliconbridge.integrations.langchain_tool import get_siliconbridge_tools
tools = get_siliconbridge_tools(api_key="sb_your_key")

CrewAI

from siliconbridge.integrations.crewai_tool import get_siliconbridge_tools
tools = get_siliconbridge_tools(api_key="sb_your_key")

Playwright (Auto-Detection)

from siliconbridge import SiliconBridge
from siliconbridge.autodetect import AutoDetect

sb = SiliconBridge(api_key="sb_your_key")
detector = AutoDetect(sb)
detector.watch_playwright(page)  # Verification barriers auto-resolved

PinchTab (Browser Control)

See examples/pinchtab-siliconbridge-demo.py for a working demo.

A2A (Agent-to-Agent Protocol)

SiliconBridge supports Google's A2A protocol for agent-to-agent communication:

curl https://siliconbridge.xyz/.well-known/agent.json

Webhook Callbacks

Get notified when tasks complete — pass a callback_url when submitting:

result = sb.submit_task("web_browse", {
    "url": "https://example.com",
    "instruction": "Extract headlines"
}, callback_url="https://your-server.com/webhook")
# We POST {task_id, status, result} when the task completes

Agent Discovery

Your agent can discover SiliconBridge programmatically:

# Everything in one call
curl https://siliconbridge.xyz/api/discover

# Live platform status
curl https://siliconbridge.xyz/api/status

# Machine-readable
curl https://siliconbridge.xyz/.well-known/agents.json
curl https://siliconbridge.xyz/.well-known/llms.txt

Agent Identity Tiers

Agents earn tiers based on lifetime spend:

TierSpendPerks
Bronze$0+Full service access
Silver$25+Volume discount eligibility
Gold$100+Priority queue, 5% discount
Platinum$500+Dedicated operator pool, 10% discount, custom SLA
identity = sb.check_identity()  # GET /api/identity

Payments

  • Free credits: $10 on every signup
  • Stripe: Credit packs ($10, $50, $100, $500 with volume bonuses)
  • Crypto: BTC and USDC/ETH accepted
  • L402: Any paid endpoint auto-returns HTTP 402 with payment instructions when balance is low

Referral Program

Add referral_code to any task — both agents earn 25% lifetime recurring credits.

result = sb.submit_task("web_browse", {"url": "..."}, referral_code="your_code")

Repo Structure

├── sdk/                       # Python SDK (pip install siliconbridge)
├── sdk-js/                    # JS/TS SDK (npm install siliconbridge)
├── examples/                  # Ready-to-run agent examples
│   └── pinchtab-siliconbridge-demo.py
├── openclaw-skill/            # OpenClaw skill (clawhub install siliconbridge)
├── chrome-extension/          # Operator Chrome extension
├── playwright-siliconbridge/  # Playwright integration
├── static/                    # Website + dashboard + operator marketplace
│   ├── .well-known/           # MCP server card, agents.json, llms.txt
│   ├── mcp-config.json        # One-click MCP config for Claude/Cursor
│   ├── dashboard.html         # API consumer dashboard
│   ├── browse.html            # Operator marketplace
│   ├── admin.html             # Owner approval panel
│   └── signup-operator.html   # Operator registration
└── main.py                    # API server (FastAPI)

Supported Protocols

ProtocolEndpoint
MCP (Streamable HTTP)https://siliconbridge.xyz/mcp
MCP (SSE, legacy)https://siliconbridge.xyz/sse
A2Ahttps://siliconbridge.xyz/.well-known/agent.json
REST APIhttps://siliconbridge.xyz/docs
L402 (Pay-per-call)Any paid endpoint (auto 402 on low balance)

License

MIT

Server Config

{
  "mcpServers": {
    "siliconbridge": {
      "command": "npx",
      "args": [
        "-y",
        "siliconbridge-mcp"
      ],
      "env": {
        "SILICONBRIDGE_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
WindsurfThe new purpose-built IDE to harness magic
DeepChatYour AI Partner on Desktop
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Serper MCP ServerA Serper MCP Server
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
ChatWiseThe second fastest AI chatbot™
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
Amap Maps高德地图官方 MCP Server
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Tavily Mcp
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
CursorThe AI Code Editor
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Playwright McpPlaywright MCP server