reversesandbox-mcp

reversesandbox-mcp

Enables AI agents to pay for x402 pay-per-use services like web search, scraping, and screenshots using a simple API key and USD balance, without managing crypto wallets.

Category
Visit Server

README

reversesandbox-mcp

MCP server for ReverseSandbox — pay for x402 services without managing crypto wallets.

ReverseSandbox lets AI agents pay for x402 pay-per-use API services (web search, scraping, screenshots) using a simple API key and USD balance. No wallets, no tokens, no bridging — just fund your account and your agent can pay for any x402-enabled service automatically.

Quick Start

  1. Get an API key at reversesandbox.com/dashboard
  2. Add funds to your account balance
  3. Configure the MCP in your AI client (see below)

Configuration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "reversesandbox": {
      "command": "npx",
      "args": ["-y", "@reverse_sandbox/mcp"],
      "env": {
        "RS_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Code

claude mcp add reversesandbox -- npx -y @reverse_sandbox/mcp

Then set your API key as an environment variable:

export RS_API_KEY="your-api-key-here"

OpenClaw

{
  "mcpServers": {
    "reversesandbox": {
      "command": "npx",
      "args": ["-y", "@reverse_sandbox/mcp"],
      "env": {
        "RS_API_KEY": "your-api-key-here"
      }
    }
  }
}

Available Tools

pay

Sign an x402 payment to access a pay-per-use API service. Call this when you receive a 402 Payment Required response. Returns a payment header to include in your retry request.

Parameters:

  • to (string, required) — Recipient address (0x-prefixed Ethereum address from the 402 response)
  • amount (string, required) — Payment amount in USD (e.g. "0.002", from the 402 response)
  • network (string, optional, default: "base") — Network name (base, polygon, arbitrum)

get_balance

Check your remaining ReverseSandbox balance.

get_usage

View recent payment history showing services used, amounts paid, and timestamps.

Parameters:

  • limit (number, optional, default: 20) — Number of records to return

Example Workflow

Here's how an agent uses ReverseSandbox to pay for an x402-protected search service:

  1. Agent makes a request to an x402-enabled search API:

    GET https://api.example.com/search?q=latest+AI+news
    
  2. Service returns 402 Payment Required with payment details:

    {
      "payTo": "0xabc...123",
      "maxAmountRequired": "0.002",
      "network": "base"
    }
    
  3. Agent calls the pay tool with the details from the 402 response:

    {
      "to": "0xabc...123",
      "amount": "0.002",
      "network": "base"
    }
    
  4. Tool returns a payment header:

    Payment signed successfully.
    Cost: $0.002
    Remaining balance: $9.998
    
    To complete your request, retry it with this header:
    X-PAYMENT: eyJhbGciOi...
    
  5. Agent retries the request with the payment header:

    GET https://api.example.com/search?q=latest+AI+news
    X-PAYMENT: eyJhbGciOi...
    
  6. Service validates payment and returns results.

Pricing

Service Cost per request
Web Search $0.002
Web Scrape $0.005
Screenshot $0.002

Environment Variables

Variable Required Default Description
RS_API_KEY Yes Your API key
RS_API_URL No https://www.reversesandbox.com API base URL

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured