Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

browse_with_payment

Browses a URL and automatically handles any 402 payment responses by paying for access using the wallet.

Parameters

ParameterTypeRequiredDescription
urlstringYesThe URL to browse (must be HTTP/HTTPS)

Returns

{
  "content": "<html><body>Full page content...</body></html>",
  "paymentProcessed": true
}

Example

Request
{
  "jsonrpc": "2.0",
  "id": 3,
  "method": "tools/call",
  "params": {
    "name": "mcpwallet_browse_with_payment",
    "arguments": {
      "url": "https://premium-content.example.com/article"
    }
  }
}