mcp

MCP.Pizza Chef: hyperbrowserai

The Hyperbrowser MCP Server is a Model Context Protocol server implementation that enables web scraping, structured data extraction, and crawling of webpages. It integrates with general-purpose browser agents such as OpenAI's CUA, Anthropic's Claude Computer Use, and Browser Use, providing a powerful platform for real-time web interaction and data retrieval within the MCP ecosystem.

Use This MCP server To

Scrape and extract structured data from websites in real time Automate web crawling for data collection and monitoring Integrate browser agents for enhanced web interaction Provide MCP clients with live web context and data Enable multi-step web navigation and task automation Support data extraction workflows for analytics and reporting

README

Hyperbrowser MCP Server

smithery badge

Frame 5

This is Hyperbrowser's Model Context Protocol (MCP) Server. It provides various tools to scrape, extract structured data, and crawl webpages. It also provides easy access to general purpose browser agents like OpenAI's CUA, Anthropic's Claude Computer Use, and Browser Use.

More information about the Hyperbrowser can be found here. The hyperbrowser API supports a superset of features present in the mcp server.

More information about the Model Context Protocol can be found here.

Table of Contents

Installation

Manual Installation

To install the server, run:

npx hyperbrowser-mcp <YOUR-HYPERBROWSER-API-KEY>

Running on Cursor

Add to ~/.cursor/mcp.json like this:

{
  "mcpServers": {
    "hyperbrowser": {
      "command": "npx",
      "args": ["-y", "hyperbrowser-mcp"],
      "env": {
        "HYPERBROWSER_API_KEY": "YOUR-API-KEY"
      }
    }
  }
}

Running on Windsurf

Add to your ./codeium/windsurf/model_config.json like this:

{
  "mcpServers": {
    "hyperbrowser": {
      "command": "npx",
      "args": ["-y", "hyperbrowser-mcp"],
      "env": {
        "HYPERBROWSER_API_KEY": "YOUR-API-KEY"
      }
    }
  }
}

Development

For development purposes, you can run the server directly from the source code.

  1. Clone the repository:

    git clone git@github.com:hyperbrowserai/mcp.git hyperbrowser-mcp
    cd hyperbrowser-mcp
  2. Install dependencies:

    npm install # or yarn install
    npm run build
  3. Run the server:

    node dist/server.js

Claude Desktop app

This is an example config for the Hyperbrowser MCP server for the Claude Desktop client.

{
  "mcpServers": {
    "hyperbrowser": {
      "command": "npx",
      "args": ["--yes", "hyperbrowser-mcp"],
      "env": {
        "HYPERBROWSER_API_KEY": "your-api-key"
      }
    }
  }
}

Tools

  • scrape_webpage - Extract formatted (markdown, screenshot etc) content from any webpage
  • crawl_webpages - Navigate through multiple linked pages and extract LLM-friendly formatted content
  • extract_structured_data - Convert messy HTML into structured JSON
  • search_with_bing - Query the web and get results with Bing search
  • browser_use_agent - Fast, lightweight browser automation with the Browser Use agent
  • openai_computer_use_agent - General-purpose automation using OpenAI’s CUA model
  • claude_computer_use_agent - Complex browser tasks using Claude computer use
  • create_profile - Creates a new persistent Hyperbrowser profile.
  • delete_profile - Deletes an existing persistent Hyperbrowser profile.
  • list_profiles - Lists existing persistent Hyperbrowser profiles.

Installing via Smithery

To install Hyperbrowser MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @hyperbrowserai/mcp --client claude

Resources

The server provides the documentation about hyperbrowser through the resources methods. Any client which can do discovery over resources has access to it.

License

This project is licensed under the MIT License.

mcp FAQ

How do I install the Hyperbrowser MCP Server?
You can install it manually by following the instructions in the GitHub repository's installation section.
What browser agents does this MCP server support?
It supports OpenAI's CUA, Anthropic's Claude Computer Use, and Browser Use agents for web interaction.
Can this server handle multi-step web navigation?
Yes, it supports complex web crawling and multi-step navigation workflows.
Is the Hyperbrowser MCP Server compatible with other MCP clients?
Yes, it is designed to work seamlessly with any MCP client following the protocol standards.
Where can I find more documentation about the Hyperbrowser MCP Server?
More information is available at https://docs.hyperbrowser.ai/ and the GitHub repository.
Does this server provide tools for structured data extraction?
Yes, it includes various tools to scrape and extract structured data from webpages.
How does this server enhance web scraping compared to traditional methods?
It integrates with LLM-powered browser agents, enabling dynamic, context-aware scraping and interaction.
Is the server open source and customizable?
Yes, the source code is available on GitHub, allowing customization and extension.