fetch vs mcp-local-rag
并排对比,帮你在这两个 MCP server 之间做选择。
fetch by modelcontextprotocol | mcp-local-rag by nkapila6 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 125 |
| 30天用量 | — | — |
| 综合分 | 76 | 47 |
| 官方 | ✓ | — |
| 分类 | 网页抓取AI / LLM 工具效率工具 | 搜索AI / LLM 工具privacy |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
mcp-local-rag · 概述
本地RAG网页搜索MCP服务器,支持9+搜索引擎,无需API密钥。
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
mcp-local-rag · 使用场景
- 检索关于当前事件的最新信息
- 跨多个来源进行技术研究
- 注重隐私的网页搜索,避免追踪
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"]
}
}
}mcp-local-rag · 安装
安装
**使用Docker(推荐)**
{
"mcpServers": {
"mcp-local-rag": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/nkapila6/mcp-local-rag:v1.0.2"
]
}
}
}**使用uvx**
{
"mcpServers": {
"mcp-local-rag":{
"command": "uvx",
"args": [
"--python=3.10",
"--from",
"git+https://github.com/nkapila6/mcp-local-rag",
"mcp-local-rag"
]
}
}
}