{
  "info": {
    "name": "Hyperbrowser — mcp.ai",
    "description": "REST API for the Hyperbrowser 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/hyperbrowser",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "hyperbrowser_add_extension",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/extension",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "extension"
          ]
        },
        "description": "Tool to add a new browser extension to Hyperbrowser for use in sessions. Use when you need to upload a Chrome extension zip file that can be loaded into browser sessions. The extension zip must contai",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_create_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "profile"
          ]
        },
        "description": "Creates a new persistent Hyperbrowser profile for storing browser state (cookies, sessions, etc.). Use this to create a reusable profile that can be attached to browser sessions via the profile ID. Pr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_create_scrape_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/scrape/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "scrape",
            "job"
          ]
        },
        "description": "Tool to initiate a new scrape job. Use when you need to extract structured content from a target URL with custom session and scrape settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"scrapeOptions\": {},\n  \"sessionOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_create_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "session"
          ]
        },
        "description": "Tool to create a new browser session with custom stealth, proxy, and privacy settings. Use when initializing an automated browsing session with specific configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"device\": \"\",\n  \"region\": \"\",\n  \"screen\": {},\n  \"adblock\": false,\n  \"locales\": \"\",\n  \"profile\": {},\n  \"platform\": \"\",\n  \"trackers\": false,\n  \"useProxy\": false,\n  \"proxyCity\": \"\",\n  \"annoyances\": false,\n  \"proxyState\": \"\",\n  \"staticIpId\": \"\",\n  \"useStealth\": false,\n  \"browserArgs\": \"\",\n  \"proxyServer\": \"\",\n  \"extensionIds\": \"\",\n  \"proxyCountry\": \"\",\n  \"urlBlocklist\": \"\",\n  \"acceptCookies\": false,\n  \"saveDownloads\": false,\n  \"solveCaptchas\": false,\n  \"timeoutMinutes\": 0,\n  \"useUltraStealth\": false,\n  \"operatingSystems\": \"\",\n  \"viewOnlyLiveView\": false,\n  \"enableWebRecording\": false,\n  \"imageCaptchaParams\": \"\",\n  \"enableWindowManager\": false,\n  \"proxyServerPassword\": \"\",\n  \"proxyServerUsername\": \"\",\n  \"disablePasswordManager\": false,\n  \"enableVideoWebRecording\": false,\n  \"enableWindowManagerTaskbar\": false,\n  \"enableAlwaysOpenPdfExternally\": false,\n  \"disablePostQuantumKeyAgreement\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_delete_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "profile"
          ]
        },
        "description": "Tool to delete a profile. Use when you need to remove a profile by its unique identifier after confirming its existence.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_fetch_web_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/web/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "web",
            "page"
          ]
        },
        "description": "Tool to fetch a web page and return content in various formats (HTML, Markdown, JSON, screenshot, etc.). Use when you need to retrieve and process web content with customizable browser settings, outpu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"cache\": {},\n  \"browser\": {},\n  \"outputs\": {},\n  \"stealth\": \"\",\n  \"navigation\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_browser_use_task_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/browser/use/task/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "browser",
            "use",
            "task",
            "result"
          ]
        },
        "description": "DEPRECATED: Use HYPERBROWSER_GET_BROWSER_USE_TASK_STATUS instead. Tool to retrieve the status and results of a browser use task. Use after starting a browser use task to check its progress, retrieve e",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_browser_use_task_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/browser/use/task/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "browser",
            "use",
            "task",
            "status"
          ]
        },
        "description": "Tool to retrieve the current status of a browser-use task. Use when checking if a browser automation task has completed or is still pending.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_claude_computer_use_task_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/claude/computer/use/task/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "claude",
            "computer",
            "use",
            "task",
            "result"
          ]
        },
        "description": "Tool to retrieve the complete result and status of a Claude Computer Use task. Use when you need full task details including execution steps, final results, and error information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_claude_computer_use_task_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/claude/computer/use/task/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "claude",
            "computer",
            "use",
            "task",
            "status"
          ]
        },
        "description": "Poll the execution status of a Claude Computer Use task. Use after calling HYPERBROWSER_START_CLAUDE_COMPUTER_USE_TASK to check if the task has completed, is still running, or has failed. Pass the job",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_crawl_job_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/crawl/job/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "crawl",
            "job",
            "status"
          ]
        },
        "description": "Tool to retrieve the status and results of a specific crawl job. Use after submitting a crawl job to check its progress or fetch results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_crawl_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/crawl/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "crawl",
            "status"
          ]
        },
        "description": "Tool to retrieve the current status of a specific crawl job. Use after initiating a crawl job to poll its status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_cua_task_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cua/task/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cua",
            "task",
            "result"
          ]
        },
        "description": "Tool to retrieve the status and results of a CUA (Claude User Agent) task. Use after starting a CUA task to check its progress, retrieve execution steps, and obtain the final result.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_cua_task_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cua/task/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cua",
            "task",
            "status"
          ]
        },
        "description": "Poll the execution status of a CUA task. Use to check if a CUA task has completed, is still running, or has failed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_extract_job_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/extract/job/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "extract",
            "job",
            "result"
          ]
        },
        "description": "Tool to fetch the status and results of a specific extract job. Use after initiating an extract job to monitor progress and retrieve final data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_extract_job_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/extract/job/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "extract",
            "job",
            "status"
          ]
        },
        "description": "Retrieve the status of an extract job. Use after calling Start Extract Job to poll its progress. Poll periodically until status is 'completed' or 'failed', then use Get Extract Job Result to retrieve ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_gemini_computer_use_task_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/gemini/computer/use/task/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "gemini",
            "computer",
            "use",
            "task",
            "result"
          ]
        },
        "description": "Tool to retrieve the current status and results of a Gemini Computer Use task. Use when checking if a Gemini automation task has completed or is still pending.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_hyper_agent_task_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/hyper/agent/task/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "hyper",
            "agent",
            "task",
            "result"
          ]
        },
        "description": "Tool to retrieve the status and results of a HyperAgent task. Use when checking if a HyperAgent task has completed or to get the final results and execution steps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "profile"
          ]
        },
        "description": "Retrieves details of a specific Hyperbrowser profile by its UUID. Returns profile metadata including name, team association, and timestamps. Use the List Profiles action first to obtain valid profile ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_scrape_job_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/scrape/job/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "scrape",
            "job",
            "result"
          ]
        },
        "description": "Retrieves the status and results of a scrape job. Poll this endpoint after creating a scrape job to check progress and get the scraped content when completed. Returns jobId, status (pending/running/co",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_scrape_job_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/scrape/job/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "scrape",
            "job",
            "status"
          ]
        },
        "description": "Tool to retrieve the current status of a specific scrape job. Use after initiating a scrape job to poll its status; poll at moderate intervals (e.g., every 2–5 seconds) rather than tight loops to avoi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_session_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/session/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "session",
            "details"
          ]
        },
        "description": "Retrieve detailed information about a Hyperbrowser session by its ID. Use this tool to get connection endpoints (wsEndpoint, liveUrl), session status, and configuration details for an existing session",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_session_downloads_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/session/downloads/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "session",
            "downloads",
            "url"
          ]
        },
        "description": "Tool to retrieve the downloads URL for a session. Returns a signed URL to download files saved during a browser session. Note: The session must be created with 'saveDownloads: true' for downloads to b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_session_recording",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/session/recording",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "session",
            "recording"
          ]
        },
        "description": "Retrieve the recording URL for a browser session. Returns a pre-signed S3 URL to download the rrweb JSON recording. The recording status indicates availability: - 'pending': Recording is being prepare",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_session_video_recording_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/session/video/recording/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "session",
            "video",
            "recording",
            "url"
          ]
        },
        "description": "Tool to retrieve the video recording URL for a browser session. Returns a pre-signed URL to download the video recording. The video recording status indicates availability: - 'pending': Video recordin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_web_crawl_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/web/crawl/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "web",
            "crawl",
            "result"
          ]
        },
        "description": "Tool to retrieve the status and results of a web crawl job. Use after submitting a web crawl job to check its progress and fetch paginated results. Supports pagination via page and batchSize parameter",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"page\": 0,\n  \"batchSize\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_get_web_crawl_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/web/crawl/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "web",
            "crawl",
            "status"
          ]
        },
        "description": "Tool to retrieve just the status of a web crawl job without the full results. Use after initiating a web crawl to poll its current state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_list_extensions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/extensions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "extensions"
          ]
        },
        "description": "Tool to list all browser extensions. Use when you need to fetch all available extensions for the Hyperbrowser account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_list_profiles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/profiles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "profiles"
          ]
        },
        "description": "Tool to list profiles. Use when you need to fetch paginated profiles and optionally filter by name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_list_sessions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sessions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sessions"
          ]
        },
        "description": "Tool to list sessions with optional status filter. Use when you need a paginated overview of browser sessions before acting on them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_search_web",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/web",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "web"
          ]
        },
        "description": "Tool to perform a web search and retrieve results with titles, URLs, and descriptions. Use when you need to search the web for information on a specific topic or query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"query\": \"\",\n  \"filters\": {},\n  \"location\": {},\n  \"maxAgeSeconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_start_browser_use_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/browser/use/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "browser",
            "use",
            "task"
          ]
        },
        "description": "Tool to start an asynchronous browser-use task. Use when you need to automate web interactions given a task instruction.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"llm\": \"\",\n  \"task\": \"\",\n  \"apiKeys\": {},\n  \"maxSteps\": 0,\n  \"sessionId\": \"\",\n  \"useVision\": false,\n  \"plannerLlm\": \"\",\n  \"maxFailures\": 0,\n  \"initialActions\": \"\",\n  \"maxInputTokens\": 0,\n  \"sessionOptions\": {},\n  \"validateOutput\": false,\n  \"keepBrowserOpen\": false,\n  \"plannerInterval\": 0,\n  \"useCustomApiKeys\": false,\n  \"maxActionsPerStep\": 0,\n  \"pageExtractionLlm\": \"\",\n  \"useVisionForPlanner\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_start_claude_computer_use_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/claude/computer/use/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "claude",
            "computer",
            "use",
            "task"
          ]
        },
        "description": "Tool to start a Claude Computer Use task. Use when you need AI-driven automated browser interactions. Call after you have your task prompt and any session preferences configured.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"llm\": \"\",\n  \"task\": \"\",\n  \"apiKeys\": {},\n  \"maxSteps\": 0,\n  \"sessionId\": \"\",\n  \"maxFailures\": 0,\n  \"sessionOptions\": {},\n  \"keepBrowserOpen\": false,\n  \"useCustomApiKeys\": false,\n  \"useComputerAction\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_start_crawl_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/crawl/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "crawl",
            "job"
          ]
        },
        "description": "Tool to start a new crawl job for a specified URL. Use when you need to initiate a web crawl before checking job status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"maxPages\": 0,\n  \"followLinks\": false,\n  \"ignoreSitemap\": false,\n  \"scrapeOptions\": {},\n  \"sessionOptions\": {},\n  \"excludePatterns\": \"\",\n  \"includePatterns\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_start_cua_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/cua/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "cua",
            "task"
          ]
        },
        "description": "Tool to start an OpenAI CUA (Computer-Using Agent) task. Use when you need AI-driven automated browser interactions powered by OpenAI. Call after you have your task prompt and any session preferences ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task\": \"\",\n  \"apiKeys\": {},\n  \"maxSteps\": 0,\n  \"sessionId\": \"\",\n  \"maxFailures\": 0,\n  \"sessionOptions\": {},\n  \"keepBrowserOpen\": false,\n  \"useCustomApiKeys\": false,\n  \"useComputerAction\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_start_extract_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/extract/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "extract",
            "job"
          ]
        },
        "description": "Start an AI-powered data extraction job from one or more web pages. Use this tool to scrape structured data from websites by providing URLs and either a natural language prompt describing what to extr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urls\": \"\",\n  \"prompt\": \"\",\n  \"schema\": {},\n  \"waitFor\": 0,\n  \"maxLinks\": 0,\n  \"systemPrompt\": \"\",\n  \"sessionOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_start_gemini_computer_use_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/gemini/computer/use/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "gemini",
            "computer",
            "use",
            "task"
          ]
        },
        "description": "Tool to start a Gemini Computer Use task for browser automation using Google's Gemini. Use when you need AI-driven automated browser interactions with Gemini models.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"llm\": \"\",\n  \"task\": \"\",\n  \"apiKeys\": {},\n  \"maxSteps\": 0,\n  \"sessionId\": \"\",\n  \"maxFailures\": 0,\n  \"sessionOptions\": {},\n  \"keepBrowserOpen\": false,\n  \"useCustomApiKeys\": false,\n  \"useComputerAction\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_start_web_crawl",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/web/crawl",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "web",
            "crawl"
          ]
        },
        "description": "Tool to start an asynchronous web crawl job that follows links from a starting URL and returns content from each page. Use when you need to crawl multiple pages from a website.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"cache\": {},\n  \"browser\": {},\n  \"outputs\": {},\n  \"stealth\": \"\",\n  \"navigation\": {},\n  \"crawlOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_stop_browser_use_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/browser/use/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "browser",
            "use",
            "task"
          ]
        },
        "description": "Tool to stop a running browser-use task. Use when halting an in-progress browser automation task after confirming its task ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_stop_claude_computer_use_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/claude/computer/use/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "claude",
            "computer",
            "use",
            "task"
          ]
        },
        "description": "Tool to stop a running Claude computer use task. Use when a Claude computer use task is in progress and needs to be terminated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_stop_cua_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/cua/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "cua",
            "task"
          ]
        },
        "description": "Tool to stop a running CUA task. Use when a CUA task is in progress and needs to be terminated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_stop_gemini_computer_use_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/gemini/computer/use/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "gemini",
            "computer",
            "use",
            "task"
          ]
        },
        "description": "Tool to stop a running Gemini computer use task. Use when a Gemini computer use task is in progress and needs to be terminated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperbrowser_stop_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "session"
          ]
        },
        "description": "Tool to stop a running session by ID. Use after confirming the session is active.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}