{
  "info": {
    "name": "Cloudflare Browser Rendering — mcp.ai",
    "description": "REST API for the Cloudflare Browser Rendering MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/cloudflare_browser_rendering",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cloudflare_browser_rendering_capture_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/capture/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "capture",
            "screenshot"
          ]
        },
        "description": "Tool to capture a webpage screenshot. Use when you need a visual snapshot of a URL or HTML with optional viewport and clipping. Always validate screenshot content — the tool returns a successful resul",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"cacheTTL\": 0,\n  \"viewport\": {},\n  \"accountId\": \"\",\n  \"screenshotOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudflare_browser_rendering_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "List all Cloudflare accounts accessible to the authenticated API token. Returns account IDs, names, types, and settings. Use this to retrieve a valid account_id required by other browser-rendering act",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudflare_browser_rendering_scrape_html_elements",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/scrape/html/elements",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "scrape",
            "html",
            "elements"
          ]
        },
        "description": "Tool to scrape HTML elements for text, HTML, attributes, and box metrics. Use when you need detailed data of matched selectors after rendering a page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"cacheTTL\": 0,\n  \"elements\": \"\",\n  \"account_id\": \"\",\n  \"actionTimeout\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudflare_browser_rendering_take_webpage_snapshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/take/webpage/snapshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "take",
            "webpage",
            "snapshot"
          ]
        },
        "description": "Capture both rendered HTML content and a screenshot of a webpage in a single request. Returns the full DOM content as a string and a Base64-encoded screenshot image. Useful when you need both visual r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"cookies\": \"\",\n  \"cacheTTL\": 0,\n  \"viewport\": {},\n  \"accountId\": \"\",\n  \"userAgent\": \"\",\n  \"addStyleTag\": \"\",\n  \"bestAttempt\": false,\n  \"gotoOptions\": {},\n  \"addScriptTag\": \"\",\n  \"authenticate\": {},\n  \"actionTimeout\": 0,\n  \"waitForTimeout\": 0,\n  \"waitForSelector\": {},\n  \"emulateMediaType\": \"\",\n  \"screenshotOptions\": {},\n  \"allowResourceTypes\": \"\",\n  \"allowRequestPattern\": \"\",\n  \"rejectResourceTypes\": \"\",\n  \"setExtraHTTPHeaders\": {},\n  \"rejectRequestPattern\": \"\",\n  \"setJavaScriptEnabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}