remote-mcp-server-authless-andor vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
remote-mcp-server-authless-andor by elizabethsiegle | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 28 | 76 |
| 官方 | — | ✓ |
| 分类 | 网页抓取浏览器自动化AI / LLM 工具 | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
remote-mcp-server-authless-andor · 概述
远程 MCP 服务器,使用 Cloudflare 浏览器渲染和 Workers AI 进行网页抓取,无需身份验证。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
remote-mcp-server-authless-andor · 使用场景
- 从需要浏览器渲染的网站提取内容
- 创建自定义的 AI 驱动的网页抓取工具
- 构建无需身份验证基础设施的远程 MCP 服务
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
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"
]
}
}
}fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}