flowlens-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
flowlens-mcp-server by magentic | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 105 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 浏览器自动化开发者工具AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 5 个月前 | 本月 |
flowlens-mcp-server · 概述
FlowLens MCP 服务器为编程代理提供完整的浏览器上下文,用于调试和回归测试。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
flowlens-mcp-server · 使用场景
- 提供完整上下文的错误报告
- 对关键用户流程进行回归测试
- 与团队成员共享浏览器流程进行协作调试
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
flowlens-mcp-server · 安装
安装步骤
- 从 Chrome 网上应用店安装 FlowLens Chrome 扩展
- 安装 MCP 服务器:
pipx install flowlens-mcp-server- 添加到您的 MCP 客户端配置(例如
~/.claude.json):
"flowlens": {
"command": "flowlens-mcp-server",
"type": "stdio"
}- 对于可共享流程,从 FlowLens 平台获取您的
FLOWLENS_MCP_TOKEN并将其添加到您的配置中:
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