youtube-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
youtube-mcp-server by 0GiS0 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 17 | ★ 149 |
| 30d uses | — | — |
| Score | 40 | 85 |
| Official | — | — |
| Categories | MediaDeveloper ToolsAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 3 mo ago | 2 mo ago |
youtube-mcp-server · Summary
A practical MCP server that integrates YouTube API with both stdio and SSE transport methods.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
youtube-mcp-server · Use cases
- Retrieving YouTube channel information and statistics through AI assistants
- Building MCP servers with multiple transport methods (stdio and SSE)
- Learning MCP implementation patterns with practical examples
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
youtube-mcp-server · Install
Installation
Option 1: MCP Server with stdio transport
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-stdio
npm install
cp .env-sample .env
# Edit .env with your YouTube API key
npm run buildOption 2: MCP Server with SSE transport
git clone https://github.com/0GiS0/youtube-mcp-server.git
cd youtube-mcp-server/mcp-remote
npm install
cp .env-sample .env
# Edit .env with your YouTube API key
npm run build && npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"youtube-stdio": {
"command": "node",
"args": ["/path/to/mcp-stdio/build/index.js"]
},
"youtube-remote": {
"url": "http://localhost:3000"
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server