MCP TOOLcubeshell.web.scrape

Web Scrape

Extracts bounded readable Markdown and basic metadata from one exact public page. It does not search the web, crawl a site, sign in, or access private network addresses.

i
Price
A successful valid page costs 1.50 Cubeshell credits. A definitive failure is not charged. Cubeshell returns the price and exact receipt with every call.

Request

ParameterTypeDescription
request_idrequiredstringStable idempotency key. Replay the same input with the same ID to avoid a second call or charge.
quote_onlyrequiredfalseMust be false in the current direct-execution contract.
input.urlrequiredpublic HTTP(S) URLOne page, up to 2,048 characters. Credentials, fragments, private hosts and nonstandard ports are rejected.
max_microcreditsintegerOptional ceiling. Set 1500000 to permit this tool's current 1.50-credit price and reject any higher price before execution.
tools/call
{
  "name": "cubeshell.web.scrape",
  "arguments": {
    "request_id": "scrape-product-page-001",
    "quote_only": false,
    "max_microcredits": 1500000,
    "input": { "url": "https://example.com/" }
  }
}

Result

ParameterTypeDescription
result.urlstringNormalized requested URL.
result.final_urlstringFinal public URL reported after normal redirects.
result.contentMarkdownReadable content, bounded to 200,000 bytes.
result.titlestringPage title when available.
result.descriptionstringPage description when available.
result.http_status200–299Canonical page response status.
result.truncatedbooleanWhether the canonical content was deliberately shortened.
!
Public pages only
Do not send secrets, cookies, authorization headers, intranet URLs, or logged-in pages. The tool has no input fields for them and fails closed on non-public targets.