MCP Catalogs
首页

everything vs real-browser-mcp

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
real-browser-mcp
by ofershap
Stars★ 85,748★ 20
30天用量
综合分7743
官方
分类
开发者工具AI / LLM 工具其它
浏览器自动化开发者工具网页抓取
实现语言TypeScriptJavaScript
最近提交本月本月

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

real-browser-mcp · 概述

MCP服务器 + Chrome扩展,让AI智能体能控制真实浏览器会话,保持现有登录和Cookie。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

real-browser-mcp · 使用场景

  • AI智能体在真实浏览器环境中测试和验证代码更改
  • 使用现有认证会话进行网页自动化
  • AI驱动的网页应用QA测试,无需重新认证
  • AI智能体进行跨浏览器测试

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

real-browser-mcp · 安装

安装

1. 添加MCP服务器

**Cursor(一键安装):** [<img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Install in Cursor" height="32" />](cursor://anysphere.cursor-deeplink/mcp/install?name=real-browser&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInJlYWwtYnJvd3Nlci1tY3AiXX0=)

或在Cursor设置中手动添加:Settings > MCP > "Add new MCP server":

{
  "mcpServers": {
    "real-browser": {
      "command": "npx",
      "args": ["-y", "real-browser-mcp"]
    }
  }
}

**Claude Desktop、Windsurf或其他MCP客户端:** 编辑 ~/Library/Application Support/Claude/claude_desktop_config.json(macOS)或 %APPDATA%\Claude\claude_desktop_config.json(Windows)。添加相同的JSON块。

2. 安装Chrome扩展

[<img src="https://developer.chrome.com/static/docs/webstore/branding/image/iNEddTyWiMfLSwFD6qGq.png" alt="Available in the Chrome Web Store" height="58" />](https://chromewebstore.google.com/detail/real-browser-mcp/fkkimpklpgedomcheiojngaaaicmaidi)

或从源码加载:

git clone https://github.com/ofershap/real-browser-mcp.git
cd real-browser-mcp
open chrome://extensions
# 启用开发者模式(右上角切换)
# 点击"加载已解压的扩展程序"并选择 extension/ 文件夹

3. 设置智能体

运行一个命令:

npx real-browser-mcp --setup cursor

这将安装智能体规则和浏览器检查命令。

对比内容由 README + GitHub 公开数据自动生成,定期更新。