Back to MCP directory
publicPublicdnsLocal runtime

302AI BrowserUse MCP Server

302AI BrowserUse MCP Server是一个基于AI的浏览器自动化服务器,通过Model Context Protocol (MCP)实现自然语言控制浏览器和网络研究。

article

README

🚀 302AI 浏览器用MCP服务端

302AI 浏览器用MCP服务端具备动态加载和多模式支持等功能,能自动更新工具列表,可本地使用也能托管为远程服务器,还可与多种应用集成,为用户提供便捷的浏览器自动化服务。

🚀 快速开始

安装依赖

npm install

构建服务端

npm run build

开发模式(自动重建)

npm run watch

✨ 主要特性

  • 动态加载:自动从远程服务器更新工具列表
  • 多模式支持:既可以本地使用stdin模式,也可以托管为远程HTTP服务器

💻 使用示例

工具列表

  • 创建浏览器自动化任务
  • 查询浏览器任务状态

📦 安装指南

与Claude Desktop集成

在 MacOS 系统中,编辑文件 ~/Library/Application Support/Claude/claude_desktop_config.json
在 Windows 系统中,编辑文件 %APPDATA%/Claude/claude_desktop_config.json

添加以下内容:

{
  "mcpServers": {
    "302ai-browser-use-mcp": {
      "command": "npx",
      "args": ["-y", "@302ai/browser-use-mcp"],
      "env": {
        "302AI_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

与Cherry Studio集成

添加以下内容:

{
  "mcpServers": {
    "Li2ZXXJkvhAALyKOFeO4N": {
      "name": "302ai-browser-use-mcp",
      "description": "",
      "isActive": true,
      "registryUrl": "",
      "command": "npx",
      "args": [
        "-y",
        "@302ai/browser-use-mcp"
      ],
      "env": {
        "302AI_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

与ChatWise集成

将以下内容复制到剪贴板:

{
  "mcpServers": {
    "302ai-sandbox-mcp": {
      "command": "npx",
      "args": ["-y", "@302ai/browser-use-mcp"],
      "env": {
        "302AI_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

然后打开 ChatWise 设置 -> 工具 -> 添加按钮 -> 选择从剪贴板导入

🔧 技术细节

由于 MCP 服务器通过标准输入输出进行通信,调试可能具有一定挑战性。我们推荐使用 MCP Inspector 工具。

运行以下命令启动 inspector:

npm install -g @302ai/mcp-inspector
mcp-inspector

📚 详细文档

302.AI 平台核心优势

  1. 企业级 AI 平台
    提供一站式AI解决方案,助力企业高效开发。
  2. 零月费模式
    所有功能均按需付费,降低使用门槛。
  3. 强大管理后台
    团队协作更轻松,支持多人高效配合。
  4. 开放 API 接口
    全部AI能力提供API访问,工具皆可自定义。
  5. 持续创新
    产品和技术快速迭代,保持行业领先。

加入我们

如果你对我们的开发工作感兴趣,欢迎加入我们的团队!
请联系:contact@302ai.com

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client