mcptube vs fetch
并排对比,帮你在这两个 MCP server 之间做选择。
mcptube by 0xchamin | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 104 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 76 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具多媒体知识库 / RAG | 网页抓取AI / LLM 工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
mcptube · 概述
MCP服务器将YouTube视频转换为包含转录、视觉分析和智能搜索的持久化知识库。
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
mcptube · 使用场景
- 跨多个教育YouTube视频研究主题
- 从教程内容构建个人知识库
- 通过视频特定上下文增强AI助手
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
mcptube · 安装
pip install mcptube在Claude Desktop中设置MCP服务器:
{
"mcpServers": {
"mcptube": {
"command": "python",
"args": ["-m", "mcptube.mcp_server"],
"env": {}
}
}
}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"]
}
}
}