MCP Catalogs
Home

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
Score4777
Official
Categories
AI / LLM ToolsMediaKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis 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 mcptube

For 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
Comparison generated from public README + GitHub signals. Last updated automatically.