mcptube vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcptube by 0xchamin | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 104 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcptube · Install
pip install mcptubeFor MCP server setup in Claude Desktop:
{
"mcpServers": {
"mcptube": {
"command": "python",
"args": ["-m", "mcptube.mcp_server"],
"env": {}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything