We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Comzee/Youtube-Ultimate-Toolkit-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# YouTube MCP Server Configuration
# Copy this file to .env and configure your values
# =============================================================================
# OAUTH CREDENTIALS (Required for Remote Mode)
# =============================================================================
# Client ID for OAuth - can be any identifier string
OAUTH_CLIENT_ID=youtube-mcp-client
# Client Secret - generate with: openssl rand -hex 32
OAUTH_CLIENT_SECRET=your-secret-here
# Password hash for consent page - generate with:
# node -e "require('bcrypt').hash('your-password-here', 12).then(console.log)"
AUTH_PASSWORD_HASH=$2b$12$your-bcrypt-hash-here
# =============================================================================
# YOUTUBE API (Optional - only needed for get_comments tool)
# =============================================================================
# YouTube Data API v3 Key - get one at https://console.developers.google.com/
# Required only if you want to use the get_comments tool
YOUTUBE_API_KEY=your-youtube-api-key-here