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 | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 7 mo ago | this 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-mcpFor 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