MCP Catalogs
Home

ytt-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

ytt-mcp
by cottongeeks
everything
by modelcontextprotocol
Stars★ 71★ 85,748
30d uses
Score4377
Official
Categories
AI / LLM ToolsMediaProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit7 mo agothis month

ytt-mcp · Summary

MCP server for fetching YouTube video transcripts with multiple integrations.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

ytt-mcp · Use cases

  • Summarize YouTube content without watching videos
  • Analyze video content for research purposes
  • Integrate video transcripts into AI-powered workflows

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

ytt-mcp · Install

Install and run using uv:

# Install using uv
uv add ytt-mcp

# Run with uvx
uvx ytt-mcp

For Claude Desktop, add to your claude-desktop-config.json:

{
  "mcpServers": {
    "ytt-mcp": {
      "command": "uvx",
      "args": ["ytt-mcp"]
    }
  }
}

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.