1.0.25npm · hyperbrowser-mcp · current release
Observed 2026-08-15T20:13:13.344Z using mcpSecurity-inventory. Status: partial. Negotiated protocol: 2025-06-18.
{
"resources": {},
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
browser_use_agentThis tool employs an open-source browser automation agent optimized specifically for fast, efficient, and cost-effective browser tasks using a cloud browser. It requires explicit, detailed instructions to perform highly specific interactions quickly.
Optimal for tasks requiring:
- Precise, explicitly defined interactions and actions
- Speed and efficiency with clear, unambiguous instructions
- Cost-effective automation at scale with straightforward workflows
Best suited use cases include:
- Explicitly defined registration and login processes
- Clearly guided navigation through web apps
- Structured, step-by-step web scraping with detailed guidance
- Extracting data via explicitly specified browser interactions
You must provide extremely detailed step-by-step instructions, including exact elements, actions, and explicit context. Clearly define the desired outcome for optimal results. Returns the completed result or an error message if issues arise.
Note: This agent trades off flexibility for significantly faster performance and lower costs compared to Claude and OpenAI agents.Input schema{
"type": "object",
"properties": {
"task": {
"type": "string",
"description": "The task to perform inside the browser"
},
"sessionOptions": {
"type": "object",
"properties": {
"useProxy": {
"type": "boolean",
"default": false,
"description": "Whether to use a proxy. Recommended false."
},
"useStealth": {
"type": "boolean",
"default": false,
"description": "Whether to use stealth mode. Recommended false."
},
"solveCaptchas": {
"type": "boolean",
"default": false,
"description": "Whether to solve captchas. Recommended false."
},
"acceptCookies": {
"type": "boolean",
"default": false,
"description": "Whether to automatically close the accept cookies popup. Recommended false."
},
"profile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the persistent profile to use for the session"
},
"persistChanges": {
"type": "boolean",
"default": true,
"description": "Whether changes made during the session should be saved to the profile. Recommended true."
}
},
"additionalProperties": false,
"description": "Options for using a persistent Hyperbrowser profile"
}
},
"additionalProperties": false,
"description": "Options for the browser session. Avoid setting these if not mentioned explicitly"
},
"returnStepInfo": {
"type": "boolean",
"default": false,
"description": "Whether to return step-by-step information about the task.Should be false by default. May contain excessive information, so we strongly recommend setting this to false."
},
"maxSteps": {
"type": "integer",
"exclusiveMinimum": 0,
"minimum": 1,
"maximum": 100,
"default": 25
}
},
"required": [
"task"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
claude_computer_use_agentThis tool leverages Anthropic's Claude model to autonomously execute complex browser tasks with sophisticated reasoning capabilities using a cloud browser. It specializes in handling intricate, nuanced, or highly context-sensitive web interactions.
Optimal for tasks requiring:
- Complex reasoning over multiple web pages
- Nuanced interpretation and flexible decision-making
- Human-like interaction with detailed context awareness
Best suited use cases include:
- Multi-step processes requiring reasoning (e.g., detailed registrations or onboarding)
- Interacting intelligently with advanced web apps
- Conducting in-depth research with complex conditions
- Extracting information from dynamic or interactive websites
Provide detailed task instructions, relevant context, and clearly specify the desired outcome for best results. Returns the completed result or an error message if issues arise.Input schema{
"type": "object",
"properties": {
"task": {
"type": "string",
"description": "The task to perform inside the browser"
},
"sessionOptions": {
"type": "object",
"properties": {
"useProxy": {
"type": "boolean",
"default": false,
"description": "Whether to use a proxy. Recommended false."
},
"useStealth": {
"type": "boolean",
"default": false,
"description": "Whether to use stealth mode. Recommended false."
},
"solveCaptchas": {
"type": "boolean",
"default": false,
"description": "Whether to solve captchas. Recommended false."
},
"acceptCookies": {
"type": "boolean",
"default": false,
"description": "Whether to automatically close the accept cookies popup. Recommended false."
},
"profile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the persistent profile to use for the session"
},
"persistChanges": {
"type": "boolean",
"default": true,
"description": "Whether changes made during the session should be saved to the profile. Recommended true."
}
},
"additionalProperties": false,
"description": "Options for using a persistent Hyperbrowser profile"
}
},
"additionalProperties": false,
"description": "Options for the browser session. Avoid setting these if not mentioned explicitly"
},
"returnStepInfo": {
"type": "boolean",
"default": false,
"description": "Whether to return step-by-step information about the task.Should be false by default. May contain excessive information, so we strongly recommend setting this to false."
},
"maxSteps": {
"type": "integer",
"exclusiveMinimum": 0,
"minimum": 1,
"maximum": 100,
"default": 25
}
},
"required": [
"task"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
crawl_webpagesCrawl a website starting from a URL and explore linked pages. This tool allows systematic collection of content from multiple pages within a domain. Use this for larger data collection tasks, content indexing, or site mapping.Input schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The URL of the webpage to crawl."
},
"sessionOptions": {
"type": "object",
"properties": {
"useProxy": {
"type": "boolean",
"default": false,
"description": "Whether to use a proxy. Recommended false."
},
"useStealth": {
"type": "boolean",
"default": false,
"description": "Whether to use stealth mode. Recommended false."
},
"solveCaptchas": {
"type": "boolean",
"default": false,
"description": "Whether to solve captchas. Recommended false."
},
"acceptCookies": {
"type": "boolean",
"default": false,
"description": "Whether to automatically close the accept cookies popup. Recommended false."
},
"profile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the persistent profile to use for the session"
},
"persistChanges": {
"type": "boolean",
"default": true,
"description": "Whether changes made during the session should be saved to the profile. Recommended true."
}
},
"additionalProperties": false,
"description": "Options for using a persistent Hyperbrowser profile"
}
},
"additionalProperties": false,
"description": "Options for the browser session. Avoid setting these if not mentioned explicitly"
},
"outputFormat": {
"type": "array",
"items": {
"type": "string",
"enum": [
"markdown",
"html",
"links",
"screenshot"
]
},
"minItems": 1,
"description": "The format of the output"
},
"followLinks": {
"type": "boolean",
"description": "Whether to follow links on the crawled webpages"
},
"maxPages": {
"type": "integer",
"exclusiveMinimum": 0,
"minimum": 1,
"maximum": 100,
"default": 10
},
"ignoreSitemap": {
"type": "boolean",
"default": false
}
},
"required": [
"url",
"outputFormat",
"followLinks"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
create_profileCreates a new persistent Hyperbrowser profile.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {}
} | — | — · — | — |
delete_profileDeletes an existing persistent Hyperbrowser profile.Input schema{
"type": "object",
"properties": {
"profileId": {
"type": "string",
"description": "ID of the profile to delete"
}
},
"required": [
"profileId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
extract_structured_dataExtract structured data from a webpage. This tool allows you to extract structured data from a webpage using a schema.Input schema{
"type": "object",
"properties": {
"urls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"description": "The list of URLs of the webpages to extract structured information from. Can include wildcards (e.g. https://example.com/*)"
},
"prompt": {
"type": "string",
"description": "The prompt to use for the extraction"
},
"schema": {
"description": "The json schema to use for the extraction. Must provide an object describing a spec compliant json schema, any other types are invalid."
},
"sessionOptions": {
"type": "object",
"properties": {
"useProxy": {
"type": "boolean",
"default": false,
"description": "Whether to use a proxy. Recommended false."
},
"useStealth": {
"type": "boolean",
"default": false,
"description": "Whether to use stealth mode. Recommended false."
},
"solveCaptchas": {
"type": "boolean",
"default": false,
"description": "Whether to solve captchas. Recommended false."
},
"acceptCookies": {
"type": "boolean",
"default": false,
"description": "Whether to automatically close the accept cookies popup. Recommended false."
},
"profile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the persistent profile to use for the session"
},
"persistChanges": {
"type": "boolean",
"default": true,
"description": "Whether changes made during the session should be saved to the profile. Recommended true."
}
},
"additionalProperties": false,
"description": "Options for using a persistent Hyperbrowser profile"
}
},
"additionalProperties": false,
"description": "Options for the browser session. Avoid setting these if not mentioned explicitly"
}
},
"required": [
"urls",
"prompt"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
list_profilesLists existing persistent Hyperbrowser profiles, with optional pagination.Input schema{
"type": "object",
"properties": {
"page": {
"type": "integer",
"exclusiveMinimum": 0,
"description": "Page number for pagination (optional)"
},
"limit": {
"type": "integer",
"exclusiveMinimum": 0,
"description": "Number of profiles per page (optional)"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
openai_computer_use_agentThis tool utilizes OpenAI's model to autonomously execute general-purpose browser-based tasks with balanced performance and reliability using a cloud browser. It handles complex interactions effectively with practical reasoning and clear execution.
Optimal for tasks requiring:
- Reliable, general-purpose browser automation
- Clear, structured interactions with moderate complexity
- Efficient handling of common web tasks and workflows
Best suited use cases include:
- Standard multi-step registration or form submissions
- Navigating typical web applications requiring multiple interactions
- Conducting structured web research tasks
- Extracting data through interactive web processes
Provide a clear step-by-step description, necessary context, and expected outcomes. Returns the completed result or an error message if issues arise.Input schema{
"type": "object",
"properties": {
"task": {
"type": "string",
"description": "The task to perform inside the browser"
},
"sessionOptions": {
"type": "object",
"properties": {
"useProxy": {
"type": "boolean",
"default": false,
"description": "Whether to use a proxy. Recommended false."
},
"useStealth": {
"type": "boolean",
"default": false,
"description": "Whether to use stealth mode. Recommended false."
},
"solveCaptchas": {
"type": "boolean",
"default": false,
"description": "Whether to solve captchas. Recommended false."
},
"acceptCookies": {
"type": "boolean",
"default": false,
"description": "Whether to automatically close the accept cookies popup. Recommended false."
},
"profile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the persistent profile to use for the session"
},
"persistChanges": {
"type": "boolean",
"default": true,
"description": "Whether changes made during the session should be saved to the profile. Recommended true."
}
},
"additionalProperties": false,
"description": "Options for using a persistent Hyperbrowser profile"
}
},
"additionalProperties": false,
"description": "Options for the browser session. Avoid setting these if not mentioned explicitly"
},
"returnStepInfo": {
"type": "boolean",
"default": false,
"description": "Whether to return step-by-step information about the task.Should be false by default. May contain excessive information, so we strongly recommend setting this to false."
},
"maxSteps": {
"type": "integer",
"exclusiveMinimum": 0,
"minimum": 1,
"maximum": 100,
"default": 25
}
},
"required": [
"task"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
scrape_webpageScrape a webpage and extract its content in various formats. This tool allows fetching content from a single URL with configurable browser behavior options. Use this for extracting text content, HTML structure, collecting links, or capturing screenshots of webpages.Input schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The URL of the webpage to scrape"
},
"sessionOptions": {
"type": "object",
"properties": {
"useProxy": {
"type": "boolean",
"default": false,
"description": "Whether to use a proxy. Recommended false."
},
"useStealth": {
"type": "boolean",
"default": false,
"description": "Whether to use stealth mode. Recommended false."
},
"solveCaptchas": {
"type": "boolean",
"default": false,
"description": "Whether to solve captchas. Recommended false."
},
"acceptCookies": {
"type": "boolean",
"default": false,
"description": "Whether to automatically close the accept cookies popup. Recommended false."
},
"profile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the persistent profile to use for the session"
},
"persistChanges": {
"type": "boolean",
"default": true,
"description": "Whether changes made during the session should be saved to the profile. Recommended true."
}
},
"additionalProperties": false,
"description": "Options for using a persistent Hyperbrowser profile"
}
},
"additionalProperties": false,
"description": "Options for the browser session. Avoid setting these if not mentioned explicitly"
},
"outputFormat": {
"type": "array",
"items": {
"type": "string",
"enum": [
"markdown",
"html",
"links",
"screenshot"
]
},
"minItems": 1,
"description": "The format of the output"
}
},
"required": [
"url",
"outputFormat"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
search_with_bingSearch the web using Bing. This tool allows you to search the web using bing.comInput schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query to submit to Bing"
},
"sessionOptions": {
"type": "object",
"properties": {
"useProxy": {
"type": "boolean",
"default": false,
"description": "Whether to use a proxy. Recommended false."
},
"useStealth": {
"type": "boolean",
"default": false,
"description": "Whether to use stealth mode. Recommended false."
},
"solveCaptchas": {
"type": "boolean",
"default": false,
"description": "Whether to solve captchas. Recommended false."
},
"acceptCookies": {
"type": "boolean",
"default": false,
"description": "Whether to automatically close the accept cookies popup. Recommended false."
},
"profile": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the persistent profile to use for the session"
},
"persistChanges": {
"type": "boolean",
"default": true,
"description": "Whether changes made during the session should be saved to the profile. Recommended true."
}
},
"additionalProperties": false,
"description": "Options for using a persistent Hyperbrowser profile"
}
},
"additionalProperties": false,
"description": "Options for the browser session. Avoid setting these if not mentioned explicitly"
},
"numResults": {
"type": "integer",
"exclusiveMinimum": 0,
"minimum": 1,
"maximum": 50,
"default": 10,
"description": "Number of search results to return"
}
},
"required": [
"query"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
This page discusses Hyperbrowser's advanced privacy features and anti-detection capabilities for web scraping and automation.
{
"resource_key": "hyperbrowser:///sessions/advanced-privacy-and-anti-detection",
"uri": "hyperbrowser:///sessions/advanced-privacy-and-anti-detection",
"name": "Advanced Privacy & Anti-Detection | Hyperbrowser",
"description": "This page discusses Hyperbrowser's advanced privacy features and anti-detection capabilities for web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "95c5430f109f2ce69adb9e88cf01f8b94b9be5256dddfe831bafa68d9c28b952"
}The "Agents" page in Hyperbrowser documentation discusses automated entities for web scraping and task execution.
{
"resource_key": "hyperbrowser:///reference/api-reference/agents",
"uri": "hyperbrowser:///reference/api-reference/agents",
"name": "Agents | Hyperbrowser",
"description": "The \"Agents\" page in Hyperbrowser documentation discusses automated entities for web scraping and task execution.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "ed2bff3d6f026e088950c12c0a11bb24ae6b1cbc23accc141490bcbcd94e44de"
}The page discusses AI function calling features within Hyperbrowser for enhanced web scraping and automation.
{
"resource_key": "hyperbrowser:///guides/ai-function-calling",
"uri": "hyperbrowser:///guides/ai-function-calling",
"name": "AI Function Calling | Hyperbrowser",
"description": "The page discusses AI function calling features within Hyperbrowser for enhanced web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "5ee57fa25fbd84a6fb511ec7575c87d962d15a3549bab7fe06b8681a6ac0d83c"
}API Reference for Hyperbrowser provides detailed information on using its web scraping and automation features.
{
"resource_key": "hyperbrowser:///reference/api-reference",
"uri": "hyperbrowser:///reference/api-reference",
"name": "API Reference | Hyperbrowser",
"description": "API Reference for Hyperbrowser provides detailed information on using its web scraping and automation features.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "d6416bda72d6e644b0657c21950b527f3fa88c2f2950b774368234f8b53c3c6a"
}The page discusses using Hyperbrowser for web scraping and automation tasks via browser interactions.
{
"resource_key": "hyperbrowser:///agents/browser-use",
"uri": "hyperbrowser:///agents/browser-use",
"name": "Browser Use | Hyperbrowser",
"description": "The page discusses using Hyperbrowser for web scraping and automation tasks via browser interactions.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "8dd24591095bca32e8f7bb1b9507b9947a3b84a863b5423f535c2836ae4f302b"
}The page explains how to effectively utilize browser features in Hyperbrowser for web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///reference/api-reference/agents/browser-use",
"uri": "hyperbrowser:///reference/api-reference/agents/browser-use",
"name": "Browser Use | Hyperbrowser",
"description": "The page explains how to effectively utilize browser features in Hyperbrowser for web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "5779c81aa6d2cce1a72b17fdbba8dfd30a34bfb90d27c34b32a992956c74df61"
}Hyperbrowser provides tools and guidance for CAPTCHA solving in web scraping and automation processes.
{
"resource_key": "hyperbrowser:///guides/captcha-solving",
"uri": "hyperbrowser:///guides/captcha-solving",
"name": "CAPTCHA Solving | Hyperbrowser",
"description": "Hyperbrowser provides tools and guidance for CAPTCHA solving in web scraping and automation processes.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "23a85e97d9412be85c4f929b453866ea1fd0a55de461d2751e420198ffa625bf"
}The page provides guidelines on using Claude with Hyperbrowser for effective web scraping and automation.
{
"resource_key": "hyperbrowser:///agents/claude-computer-use",
"uri": "hyperbrowser:///agents/claude-computer-use",
"name": "Claude Computer Use | Hyperbrowser",
"description": "The page provides guidelines on using Claude with Hyperbrowser for effective web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "ebcada00fd5c162b82f48219941c7b9a18b2881371c4983b4898bfaaa3e74a15"
}The page discusses using Claude for web scraping and automation with Hyperbrowser tools.
{
"resource_key": "hyperbrowser:///reference/api-reference/agents/claude-computer-use",
"uri": "hyperbrowser:///reference/api-reference/agents/claude-computer-use",
"name": "Claude Computer Use | Hyperbrowser",
"description": "The page discusses using Claude for web scraping and automation with Hyperbrowser tools.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "79280a092cce304e3dff151607e453a1c2ac21abb41161ef392fca7674d639a9"
}The page discusses how to utilize Hyperbrowser for effective web crawling.
{
"resource_key": "hyperbrowser:///web-scraping/crawl",
"uri": "hyperbrowser:///web-scraping/crawl",
"name": "Crawl | Hyperbrowser",
"description": "The page discusses how to utilize Hyperbrowser for effective web crawling.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "dfb18e8b7efc90a41d54083bc92997a60aca17a5a318e974c4b56e22d96aa0c6"
}The "Crawl" page of Hyperbrowser details how to use the tool for web scraping and automated data extraction.
{
"resource_key": "hyperbrowser:///reference/sdks/node/crawl",
"uri": "hyperbrowser:///reference/sdks/node/crawl",
"name": "Crawl | Hyperbrowser",
"description": "The \"Crawl\" page of Hyperbrowser details how to use the tool for web scraping and automated data extraction.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "434cae6d7d31887cefb379409a6d58a918c5ae48352687cb7fb54f1cf07c4d44"
}The Crawl section of Hyperbrowser’s documentation explains web scraping techniques and automation processes.
{
"resource_key": "hyperbrowser:///reference/sdks/python/crawl",
"uri": "hyperbrowser:///reference/sdks/python/crawl",
"name": "Crawl | Hyperbrowser",
"description": "The Crawl section of Hyperbrowser’s documentation explains web scraping techniques and automation processes.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "48e42445b60ac14cfdbd226571b9394508cd0b4153032defc41fc562812cf289"
}The "Crawl" section of Hyperbrowser documentation explains how to use the tool for web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///reference/api-reference/crawl",
"uri": "hyperbrowser:///reference/api-reference/crawl",
"name": "Crawl | Hyperbrowser",
"description": "The \"Crawl\" section of Hyperbrowser documentation explains how to use the tool for web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "e19763d57834921588dfdb81426421b191e2878acadf2b1d08d93e7d06a31967"
}The "Crawling" page of Hyperbrowser covers the tool's web scraping capabilities and how to implement them.
{
"resource_key": "hyperbrowser:///get-started/quickstart/crawling",
"uri": "hyperbrowser:///get-started/quickstart/crawling",
"name": "Crawling | Hyperbrowser",
"description": "The \"Crawling\" page of Hyperbrowser covers the tool's web scraping capabilities and how to implement them.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "d24a08d5fb3f54854bbf0b8a9f7b65b396268a0802fc2f55c83e1b6f06c5d9f0"
}The page discusses extensions for Hyperbrowser, enhancing its web scraping and automation capabilities.
{
"resource_key": "hyperbrowser:///sessions/extensions",
"uri": "hyperbrowser:///sessions/extensions",
"name": "Extensions | Hyperbrowser",
"description": "The page discusses extensions for Hyperbrowser, enhancing its web scraping and automation capabilities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "b28d450bc8c62ff16d5cf08c000a790cecb23143b504f3ccd763be243359c421"
}The Extensions page for Hyperbrowser details available extensions that enhance web scraping and automation functionalities.
{
"resource_key": "hyperbrowser:///reference/sdks/node/extensions",
"uri": "hyperbrowser:///reference/sdks/node/extensions",
"name": "Extensions | Hyperbrowser",
"description": "The Extensions page for Hyperbrowser details available extensions that enhance web scraping and automation functionalities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "396f97796f90d14044508dcaccd07cf9bf71742b45052b0ae461d7b190309479"
}Explore Hyperbrowser extensions for enhanced web scraping and automation capabilities in your projects.
{
"resource_key": "hyperbrowser:///reference/sdks/python/extensions",
"uri": "hyperbrowser:///reference/sdks/python/extensions",
"name": "Extensions | Hyperbrowser",
"description": "Explore Hyperbrowser extensions for enhanced web scraping and automation capabilities in your projects.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "8f6833e761bbd2ce1c63204ceee3780987141ccca2e2d5ba71320d684d8ec461"
}The page discusses extensions for Hyperbrowser that enhance its web scraping and automation capabilities.
{
"resource_key": "hyperbrowser:///reference/api-reference/extensions",
"uri": "hyperbrowser:///reference/api-reference/extensions",
"name": "Extensions | Hyperbrowser",
"description": "The page discusses extensions for Hyperbrowser that enhance its web scraping and automation capabilities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "a5a0fa2d8b91fa39730b616fac0b52e9d88a19f2672dd6d520ed0ca55efed0ee"
}Learn how to extract information using a Large Language Model with Hyperbrowser.
{
"resource_key": "hyperbrowser:///guides/extract-information-with-an-llm",
"uri": "hyperbrowser:///guides/extract-information-with-an-llm",
"name": "Extract Information with an LLM | Hyperbrowser",
"description": "Learn how to extract information using a Large Language Model with Hyperbrowser.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "0faf3c71aacd286c14847e13860c671253d49cd62d08e48b7d8ed04bcd0ebd13"
}The Extract page of Hyperbrowser provides guidelines for web scraping and data extraction techniques using the tool.
{
"resource_key": "hyperbrowser:///web-scraping/extract",
"uri": "hyperbrowser:///web-scraping/extract",
"name": "Extract | Hyperbrowser",
"description": "The Extract page of Hyperbrowser provides guidelines for web scraping and data extraction techniques using the tool.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "aaf46cfd9102c0226bceb147f9af36f0bb952b68f0b2e4712a1b5c3a1fa51314"
}The Extract page of Hyperbrowser provides guidelines on data extraction methods and tools for web scraping.
{
"resource_key": "hyperbrowser:///reference/api-reference/extract",
"uri": "hyperbrowser:///reference/api-reference/extract",
"name": "Extract | Hyperbrowser",
"description": "The Extract page of Hyperbrowser provides guidelines on data extraction methods and tools for web scraping.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "d70b1e0b5a69d02d0225d4d2b672b9973471fd7e2267ca9f542b5b1017589e67"
}Hyperbrowser is a web scraping and automation tool, offering extensive documentation for users.
{
"resource_key": "hyperbrowser:///~gitbook/pdf",
"uri": "hyperbrowser:///~gitbook/pdf",
"name": "Hyperbrowser",
"description": "Hyperbrowser is a web scraping and automation tool, offering extensive documentation for users.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "f946a6e1c9ac95110cec5102311197907b245808beb4f7a43b340df90eb7c094"
}LangChain integrates with Hyperbrowser for enhanced web scraping and automation capabilities.
{
"resource_key": "hyperbrowser:///integrations/langchain",
"uri": "hyperbrowser:///integrations/langchain",
"name": "LangChain | Hyperbrowser",
"description": "LangChain integrates with Hyperbrowser for enhanced web scraping and automation capabilities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "0cca41f479756bb2f1ab0689f87c89dfc4f7dc6175880b17e45ea77044da4027"
}The Live View feature in Hyperbrowser allows real-time monitoring and interaction with web scraping tasks.
{
"resource_key": "hyperbrowser:///sessions/live-view",
"uri": "hyperbrowser:///sessions/live-view",
"name": "Live View | Hyperbrowser",
"description": "The Live View feature in Hyperbrowser allows real-time monitoring and interaction with web scraping tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "08a5907b67aceb46054e2ac87b141b4001037628a77b61f200c35e8013096be6"
}LlamaIndex documentation for integrating with Hyperbrowser for web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///integrations/llamaindex",
"uri": "hyperbrowser:///integrations/llamaindex",
"name": "LlamaIndex | Hyperbrowser",
"description": "LlamaIndex documentation for integrating with Hyperbrowser for web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "12072b90846e88bc88a63b0e83cb3e62765a6ccdd232f3ca5d2a52c1fe034cf3"
}The page covers the Model Context Protocol used in Hyperbrowser for web scraping and automation.
{
"resource_key": "hyperbrowser:///guides/model-context-protocol",
"uri": "hyperbrowser:///guides/model-context-protocol",
"name": "Model Context Protocol | Hyperbrowser",
"description": "The page covers the Model Context Protocol used in Hyperbrowser for web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "e7a4f61e1416133c056ed4b52f1d00d2159839c47d5ed456765bbf448890158c"
}Overview of the Node module in Hyperbrowser for web scraping and automation.
{
"resource_key": "hyperbrowser:///reference/sdks/node",
"uri": "hyperbrowser:///reference/sdks/node",
"name": "Node | Hyperbrowser",
"description": "Overview of the Node module in Hyperbrowser for web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "4160f2f3e031b8b40c3fbeead180560504dad0e9c70d05718928cdf5e1d67514"
}The page discusses the integration of OpenAI's CUA with Hyperbrowser for enhanced web scraping and automation capabilities.
{
"resource_key": "hyperbrowser:///agents/openai-cua",
"uri": "hyperbrowser:///agents/openai-cua",
"name": "OpenAI CUA | Hyperbrowser",
"description": "The page discusses the integration of OpenAI's CUA with Hyperbrowser for enhanced web scraping and automation capabilities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "e028249a14ebe4e48519bda6a3079289a6cc2193e3e0dd69116011b1d2cb8b5f"
}OpenAI CUA for Hyperbrowser details integration and automation features for effective web scraping.
{
"resource_key": "hyperbrowser:///reference/api-reference/agents/openai-cua",
"uri": "hyperbrowser:///reference/api-reference/agents/openai-cua",
"name": "OpenAI CUA | Hyperbrowser",
"description": "OpenAI CUA for Hyperbrowser details integration and automation features for effective web scraping.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "d3b2fbda59e3fe7180feb489ffec579edcf48fa319a09c1e30d74d35431bc945"
}Overview of Hyperbrowser, a tool for web scraping and automation, detailing its features and functionalities.
{
"resource_key": "hyperbrowser:///sessions/overview",
"uri": "hyperbrowser:///sessions/overview",
"name": "Overview | Hyperbrowser",
"description": "Overview of Hyperbrowser, a tool for web scraping and automation, detailing its features and functionalities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "1d0bf01a37d85743f82be72ddcf23d7345636c683c32b1f0c336d395ed9b2dc4"
}The page discusses using Playwright with Hyperbrowser for web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///get-started/quickstart/playwright",
"uri": "hyperbrowser:///get-started/quickstart/playwright",
"name": "Playwright | Hyperbrowser",
"description": "The page discusses using Playwright with Hyperbrowser for web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "7c77ce7e9fc5c1a98b833a3b45edb16c927e1550564ea7c4a36a0a7c525375b4"
}The "Profiles" page in Hyperbrowser outlines how to manage user profiles for data scraping and automation tasks.
{
"resource_key": "hyperbrowser:///sessions/profiles",
"uri": "hyperbrowser:///sessions/profiles",
"name": "Profiles | Hyperbrowser",
"description": "The \"Profiles\" page in Hyperbrowser outlines how to manage user profiles for data scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "1f5f2f34f9e02bec4423f2ade53ff73bded8ca9df3f1a82966ccf86fa48c1e63"
}The "Profiles" page of Hyperbrowser covers user profiles and their management within the tool.
{
"resource_key": "hyperbrowser:///reference/sdks/node/profiles",
"uri": "hyperbrowser:///reference/sdks/node/profiles",
"name": "Profiles | Hyperbrowser",
"description": "The \"Profiles\" page of Hyperbrowser covers user profiles and their management within the tool.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "c459894bc8208079d2f4aafda3432558508090dec0ecafd2271b68851d56de06"
}The "Profiles" page in Hyperbrowser documentation explains how to manage and use user profiles for web scraping tasks.
{
"resource_key": "hyperbrowser:///reference/sdks/python/profiles",
"uri": "hyperbrowser:///reference/sdks/python/profiles",
"name": "Profiles | Hyperbrowser",
"description": "The \"Profiles\" page in Hyperbrowser documentation explains how to manage and use user profiles for web scraping tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "a4d717645433f66b765f62e0427494d3ed4d0fcd4ed60bd1a559ebafbe87f71e"
}The "Profiles" page in Hyperbrowser documentation explains how to manage and configure user profiles for scraping tasks.
{
"resource_key": "hyperbrowser:///reference/api-reference/profiles",
"uri": "hyperbrowser:///reference/api-reference/profiles",
"name": "Profiles | Hyperbrowser",
"description": "The \"Profiles\" page in Hyperbrowser documentation explains how to manage and configure user profiles for scraping tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "18a10ef4adb473ea06085f965d20f248d70c165ebe81028661a8f28da6cc96b9"
}Puppeteer integration with Hyperbrowser enables web scraping and automation through headless browser control.
{
"resource_key": "hyperbrowser:///get-started/quickstart/puppeteer",
"uri": "hyperbrowser:///get-started/quickstart/puppeteer",
"name": "Puppeteer | Hyperbrowser",
"description": "Puppeteer integration with Hyperbrowser enables web scraping and automation through headless browser control.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "ae386f4dd945642c0f94e8fb36dde27dbd960a3aa9c747aa5f01f96bdcf65740"
}The page provides documentation on using Hyperbrowser with Python for web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///reference/sdks/python",
"uri": "hyperbrowser:///reference/sdks/python",
"name": "Python | Hyperbrowser",
"description": "The page provides documentation on using Hyperbrowser with Python for web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "739b062f7fc4d44381d97c7b79de9e4d38fd6c0384155767fbf21f1bb490626f"
}Quickstart guide for Hyperbrowser provides initial setup and functionality instructions for effective web scraping and automation.
{
"resource_key": "hyperbrowser:///get-started/quickstart",
"uri": "hyperbrowser:///get-started/quickstart",
"name": "Quickstart | Hyperbrowser",
"description": "Quickstart guide for Hyperbrowser provides initial setup and functionality instructions for effective web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "7e7bba1cc83b8d0bd31d80d41d97e6ccf1b2f85c49d469101573976bd8d17083"
}The page covers Hyperbrowser's recording feature for efficient web scraping and automation processes.
{
"resource_key": "hyperbrowser:///sessions/recordings",
"uri": "hyperbrowser:///sessions/recordings",
"name": "Recordings | Hyperbrowser",
"description": "The page covers Hyperbrowser's recording feature for efficient web scraping and automation processes.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "7b7f42f5ea527ddb0e8048b7e2dee833df0e5312e74dbb4e2c93ce5108ed40f1"
}"Scrape" page in Hyperbrowser documentation focuses on scraping data from web pages using the tool's features.
{
"resource_key": "hyperbrowser:///web-scraping/scrape",
"uri": "hyperbrowser:///web-scraping/scrape",
"name": "Scrape | Hyperbrowser",
"description": "\"Scrape\" page in Hyperbrowser documentation focuses on scraping data from web pages using the tool's features.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "effda8f1a397c668718117dafd24d0f1ec9d82c3904ddb10b371b70fb73e23d3"
}The "Scrape" page of Hyperbrowser outlines techniques and tools for web scraping and automation.
{
"resource_key": "hyperbrowser:///reference/sdks/node/scrape",
"uri": "hyperbrowser:///reference/sdks/node/scrape",
"name": "Scrape | Hyperbrowser",
"description": "The \"Scrape\" page of Hyperbrowser outlines techniques and tools for web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "d9264c7a818e582b8901d5349f0e6360b012012ecf5dc6c3311db5cafd5d8744"
}The page explains how to use Hyperbrowser for web scraping tasks.
{
"resource_key": "hyperbrowser:///reference/sdks/python/scrape",
"uri": "hyperbrowser:///reference/sdks/python/scrape",
"name": "Scrape | Hyperbrowser",
"description": "The page explains how to use Hyperbrowser for web scraping tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "fc0e61942f9d9ee3786bc61e8a95e2067c64f290e81492176738d2dea516579a"
}The "Scrape" section of Hyperbrowser documentation explains web scraping techniques and automation features of the tool.
{
"resource_key": "hyperbrowser:///reference/api-reference/scrape",
"uri": "hyperbrowser:///reference/api-reference/scrape",
"name": "Scrape | Hyperbrowser",
"description": "The \"Scrape\" section of Hyperbrowser documentation explains web scraping techniques and automation features of the tool.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "31c1ce2e8b9c2b7ccbd120a8d93f9681045cda7b52e3884c23aa2ae3ab04c82e"
}The "Scraping" page in Hyperbrowser details how to extract data from websites using the tool's functionalities.
{
"resource_key": "hyperbrowser:///get-started/quickstart/scraping",
"uri": "hyperbrowser:///get-started/quickstart/scraping",
"name": "Scraping | Hyperbrowser",
"description": "The \"Scraping\" page in Hyperbrowser details how to extract data from websites using the tool's functionalities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "60f57a01bad3bfffe696828255fb5a5744fa6fa530532d0a3a616edd3184e457"
}The page covers web scraping techniques and documentation for using Hyperbrowser effectively.
{
"resource_key": "hyperbrowser:///guides/scraping",
"uri": "hyperbrowser:///guides/scraping",
"name": "Scraping | Hyperbrowser",
"description": "The page covers web scraping techniques and documentation for using Hyperbrowser effectively.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "81a89528fba97d42a103b778a966b18f574e6437c604d4b4ed8ae87b00e2e875"
}The page discusses Hyperbrowser SDKs for web scraping and automation, including features and usage details.
{
"resource_key": "hyperbrowser:///reference/sdks",
"uri": "hyperbrowser:///reference/sdks",
"name": "SDKs | Hyperbrowser",
"description": "The page discusses Hyperbrowser SDKs for web scraping and automation, including features and usage details.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "4d38f2aa101673880a384cd252c65cbc2c9bce4fdb8fa6988c2eb11e8f904885"
}Selenium integration with Hyperbrowser allows for enhanced web scraping and automation capabilities.
{
"resource_key": "hyperbrowser:///get-started/quickstart/selenium",
"uri": "hyperbrowser:///get-started/quickstart/selenium",
"name": "Selenium | Hyperbrowser",
"description": "Selenium integration with Hyperbrowser allows for enhanced web scraping and automation capabilities.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "f1444b4b33bb2ef40cc02d5581f0ff569a70b719148a2fac762d0db5a6f5b78a"
}This page details session parameters for configuring Hyperbrowser's web scraping and automation features.
{
"resource_key": "hyperbrowser:///sessions/overview/session-parameters",
"uri": "hyperbrowser:///sessions/overview/session-parameters",
"name": "Session Parameters | Hyperbrowser",
"description": "This page details session parameters for configuring Hyperbrowser's web scraping and automation features.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "363e7c1c6edf883b7033457230afaa889c564baa16aed69f75cdb3cce3f55521"
}The page discusses sessions in Hyperbrowser, detailing how to manage and utilize them effectively for web scraping tasks.
{
"resource_key": "hyperbrowser:///reference/sdks/node/sessions",
"uri": "hyperbrowser:///reference/sdks/node/sessions",
"name": "Sessions | Hyperbrowser",
"description": "The page discusses sessions in Hyperbrowser, detailing how to manage and utilize them effectively for web scraping tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "1922072eedd8272fd0a6625663bc772802d5bc73b1b2cae60cc1b2d421d54c18"
}The page discusses managing sessions in Hyperbrowser for effective web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///reference/sdks/python/sessions",
"uri": "hyperbrowser:///reference/sdks/python/sessions",
"name": "Sessions | Hyperbrowser",
"description": "The page discusses managing sessions in Hyperbrowser for effective web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "dbf74f000795e64abd2499615fdafb2d112e6e2ec64e3b661959b5b889a3c262"
}The "Sessions" page in Hyperbrowser covers managing and utilizing sessions for web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///reference/api-reference/sessions",
"uri": "hyperbrowser:///reference/api-reference/sessions",
"name": "Sessions | Hyperbrowser",
"description": "The \"Sessions\" page in Hyperbrowser covers managing and utilizing sessions for web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "0791ef09a7cecfa309de2c77a08fd77ca13f3cba84775b3c62910b4af3761add"
}The page describes how to use sessions in Hyperbrowser for efficient web scraping and automation.
{
"resource_key": "hyperbrowser:///guides/using-hyperbrowser-session",
"uri": "hyperbrowser:///guides/using-hyperbrowser-session",
"name": "Using Hyperbrowser Session | Hyperbrowser",
"description": "The page describes how to use sessions in Hyperbrowser for efficient web scraping and automation.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "e69f4a7bf6b3f8d90db185d9000f713337e7204b12c3a29338eaf33fd717ddc1"
}Hyperbrowser documentation provides an introduction to web scraping and automation using the Hyperbrowser tool.
{
"resource_key": "hyperbrowser:///",
"uri": "hyperbrowser:///",
"name": "Welcome to Hyperbrowser | Hyperbrowser",
"description": "Hyperbrowser documentation provides an introduction to web scraping and automation using the Hyperbrowser tool.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "5c4700ac1b41c9418f67bf164c81c577363c22b0f6ce7eb34739cde0a8a9620f"
}The page explains headless browsers and their role in Hyperbrowser for web scraping and automation tasks.
{
"resource_key": "hyperbrowser:///what-are-headless-browsers",
"uri": "hyperbrowser:///what-are-headless-browsers",
"name": "What are Headless browsers ? | Hyperbrowser",
"description": "The page explains headless browsers and their role in Hyperbrowser for web scraping and automation tasks.",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "ae8c451882cbc33c6218421dcf7663c7ca40e9a03d05dfafc2dc535ec51e482d"
}