mcptube vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
mcptube by 0xchamin | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 104 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaKnowledge Graph | Web ScrapingAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
mcptube · Summary
MCP server that transforms YouTube videos into a persistent knowledge base with transcripts, vision analysis, and agentic search.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
mcptube · Use cases
- Researching topics across multiple educational YouTube videos
- Building a personal knowledge base from tutorial content
- Enhancing AI assistants with video-specific context
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
mcptube · Install
pip install mcptubeFor MCP server setup in Claude Desktop:
{
"mcpServers": {
"mcptube": {
"command": "python",
"args": ["-m", "mcptube.mcp_server"],
"env": {}
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}