remote-mcp-server-authless-andor vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
remote-mcp-server-authless-andor by elizabethsiegle | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 28 | 77 |
| 官方 | — | ✓ |
| 分类 | 网页抓取浏览器自动化AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
remote-mcp-server-authless-andor · 概述
远程 MCP 服务器,使用 Cloudflare 浏览器渲染和 Workers AI 进行网页抓取,无需身份验证。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
remote-mcp-server-authless-andor · 使用场景
- 从需要浏览器渲染的网站提取内容
- 创建自定义的 AI 驱动的网页抓取工具
- 构建无需身份验证基础设施的远程 MCP 服务
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
remote-mcp-server-authless-andor · 安装
安装
- 使用以下按钮部署到 Cloudflare Workers:
[](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-authless)
- 或使用命令行在本地创建项目:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless- 通过将以下内容添加到配置中来连接到 Claude Desktop:
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}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