超浏览器AI自动化

欢迎来到Hyperbrowser,这是专为人工智能打造的互联网平台。Hyperbrowser是下一代平台,它赋予人工智能代理强大功能,并实现简单易行且可扩展的浏览器自动化操作。该平台专为AI开发者设计,消除了本地基础设施带来的烦恼和性能瓶颈,让您能够…

browser-automation

1.7w 查看 · 2026-07-07 更新

简介

欢迎来到Hyperbrowser,这是专为人工智能打造的互联网平台。Hyperbrowser是下一代平台,它赋予人工智能代理强大功能,并实现简单易行且可扩展的浏览器自动化操作。该平台专为AI开发者设计,消除了本地基础设施带来的烦恼和性能瓶颈,让您能够…

简介

欢迎来到Hyperbrowser,这是专为人工智能打造的互联网平台。Hyperbrowser是下一代平台,它赋予人工智能代理强大功能,并实现简单易行且可扩展的浏览器自动化操作。该平台专为AI开发者设计,消除了本地基础设施带来的烦恼和性能瓶颈,让您能够…

Hyperbrowser MCP 服务器

smithery 徽章

Frame 5

这是 Hyperbrowser 的模型上下文协议 (MCP) 服务器。它提供了各种工具来抓取、提取结构化数据和爬取网页。它还提供了对通用浏览器代理(如 OpenAI 的 CUA、Anthropic 的 Claude 计算机使用和浏览器使用)的轻松访问。

有关 Hyperbrowser 的更多信息,请参见 这里。Hyperbrowser API 支持 mcp 服务器中功能的一个超集。

关于 Model Context Protocol 的更多信息,请参见 这里

目录

安装

手动安装

要安装服务器,请运行:

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

在 Cursor 上运行

将以下内容添加到 ~/.cursor/mcp.json 中:

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

在 Windsurf 上运行

将以下内容添加到你的 ./codeium/windsurf/model_config.json 中:

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

开发

出于开发目的,你可以直接从源代码运行服务器。

  1. 克隆仓库:

    git clone git@github.com:hyperbrowserai/mcp.git hyperbrowser-mcp cd hyperbrowser-mcp
  2. 安装依赖项:

    npm install # 或 yarn install npm run build
  3. 运行服务器:

    node dist/server.js

Claude 桌面应用程序

这是一个用于 Claude 桌面客户端的 Hyperbrowser MCP 服务器示例配置。

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

工具

  • scrape_webpage - 从任何网页中提取格式化的内容(例如 markdown、截图等)
  • crawl_webpages - 遍历多个链接页面并提取适合 LLM 的格式化内容
  • extract_structured_data - 将混乱的 HTML 转换为结构化的 JSON
  • search_with_bing - 使用 Bing 搜索查询网络并获取结果
  • browser_use_agent - 使用 Browser Use 代理进行快速轻量级的浏览器自动化
  • openai_computer_use_agent - 使用 OpenAI 的 CUA 模型进行通用自动化
  • claude_computer_use_agent - 使用 Claude 计算机使用进行复杂的浏览器任务

通过 Smithery 安装

要通过 Smithery 自动为 Claude 桌面安装 Hyperbrowser MCP 服务器:

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

资源

服务器通过 resources 方法提供关于 hyperbrowser 的文档。任何可以进行资源发现的客户端都可以访问这些文档。

许可证

本项目采用 MIT 许可证。

服务配置

[{'mcpServers': {'hyperbrowser': {'args': ['-y', 'hyperbrowser-mcp'], 'command': 'npx', 'env': {'HYPERBROWSER_API_KEY': 'YOUR-API-KEY'}}}}, {'mcpServers': {'hyperbrowser': {'args': ['-y', 'hyperbrowser-mcp'], 'command': 'npx', 'env': {'HYPERBROWSER_API_KEY': 'YOUR-API-KEY'}}}}, {'mcpServers': {'hyperbrowser': {'args': ['--yes', 'hyperbrowser-mcp'], 'command': 'npx', 'env': {'HYPERBROWSER_API_KEY': 'your-api-key'}}}}]

来源

超浏览器AI自动化 - MCP - HelloWorld