MCP Catalogs
Home

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
Score4085
Official
Categories
MediaDeveloper ToolsAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit3 mo ago2 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 build

Option 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 start

Claude 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

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.