{
  "info": {
    "name": "Browserless — mcp.ai",
    "description": "REST API for the Browserless 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/browserless",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "browserless_download_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "file"
          ]
        },
        "description": "This tool allows downloading files that Chrome has downloaded during the execution of puppeteer code. It sets up a blank page, creates a fresh download directory, injects the provided code, and execut",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"context\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserless_execute_custom_function",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/execute/custom/function",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "execute",
            "custom",
            "function"
          ]
        },
        "description": "A tool that allows executing custom Puppeteer scripts via HTTP requests. This endpoint enables users to run browser automation tasks without managing their own infrastructure.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"context\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserless_fetch_html_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/html/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "html",
            "content"
          ]
        },
        "description": "This tool fetches the complete HTML content of a webpage using Browserless's content API. It's designed to retrieve the full HTML contents of any website, including dynamically generated content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"best_attempt\": false,\n  \"goto_options\": {},\n  \"wait_for_event\": {},\n  \"wait_for_timeout\": 0,\n  \"wait_for_selector\": {},\n  \"reject_resource_types\": \"\",\n  \"reject_request_pattern\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserless_generate_pdf",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/pdf",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "pdf"
          ]
        },
        "description": "This tool generates a PDF from a specified webpage using browserless's PDF generation API. It allows specifying the URL of the webpage along with parameters such as format, filename, and waitUntil opt",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"options\": {},\n  \"addStyleTag\": \"\",\n  \"bestAttempt\": false,\n  \"gotoOptions\": {},\n  \"addScriptTag\": \"\",\n  \"waitForSelector\": {},\n  \"rejectResourceTypes\": \"\",\n  \"rejectRequestPattern\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserless_scrape_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/scrape/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "scrape",
            "content"
          ]
        },
        "description": "A tool to extract structured content from a webpage by specifying CSS selectors. The tool navigates to the specified URL, waits for the page to load (including parsing and executing JavaScript), and r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"elements\": \"\",\n  \"gotoOptions\": {},\n  \"waitForEvent\": {},\n  \"waitForTimeout\": 0,\n  \"waitForFunction\": {},\n  \"waitForSelector\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserless_take_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/take/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "take",
            "screenshot"
          ]
        },
        "description": "A tool that captures a screenshot of a webpage using browserless's screenshot API. The tool takes a URL and returns either a PNG or JPEG image. It includes options for full page capture, image type, q",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"clip_x\": 0,\n  \"clip_y\": 0,\n  \"quality\": 0,\n  \"full_page\": false,\n  \"clip_width\": 0,\n  \"image_type\": \"\",\n  \"clip_height\": 0,\n  \"omit_background\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserless_unblock_protected_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unblock/protected/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unblock",
            "protected",
            "content"
          ]
        },
        "description": "This tool provides access to content from websites that implement bot protection mechanisms. It is designed to bypass various types of protection (such as CAPTCHA and bot detections) and return the HT",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ttl\": 0,\n  \"url\": \"\",\n  \"content\": false,\n  \"cookies\": false,\n  \"screenshot\": false,\n  \"waitForEvent\": {},\n  \"waitForFunction\": {},\n  \"waitForSelector\": {},\n  \"browserWSEndpoint\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}