MCP Catalogs
首页

everything vs MCP

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

everything
by modelcontextprotocol
MCP
by SelviAkdag
Stars★ 85,748★ 0
30天用量
综合分7733
官方
分类
开发者工具AI / LLM 工具其它
浏览器自动化本地文件系统开发者工具
实现语言TypeScript
最近提交本月10 个月前

everything · 概述

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

MCP · 概述

专为Windows设计的MCP服务器,提供无需Docker或WSL的浏览器自动化和文件管理功能。

everything · 使用场景

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

MCP · 使用场景

  • 在Windows系统上自动化浏览器任务,无需虚拟化
  • 通过AI命令在Windows上管理文件和目录
  • 编程执行网络搜索和截图

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

MCP · 安装

安装

  1. 克隆仓库: git clone https://github.com/SelviAkdag/MCP.git
  2. 进入项目目录: cd MCP
  3. 创建并激活虚拟环境:

``bash python -m venv venv venv\Scripts\activate ``

  1. 全局安装npx: npm install -g npx
  2. 安装支持MCP的Hugging Face Hub: pip install "huggingface_hub[mcp]>=0.32.0"
  3. 登录Hugging Face: huggingface-cli login
  4. 安装MCP服务器: npm install @playwright/test @modelcontextprotocol/server-filesystem
  5. 安装浏览器: npx playwright install(需要管理员权限)
  6. 运行浏览器代理: tiny-agents run agents/agent_browser.json

对于Claude Desktop,在config.json中添加:

{
  "mcpServers": {
    "mcp-windows": {
      "command": "python",
      "args": ["-m", "tiny_agents", "run", "/path/to/MCP/agents/agent_browser.json"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。