credentials.yml.example•904 B
# YouTube MCP Server - API Key Configuration
#
# Copy this file to 'credentials.yml' and replace the placeholder with your actual YouTube Data API v3 key
#
# To get a YouTube Data API key:
# 1. Go to https://console.cloud.google.com/
# 2. Create a new project or select an existing one
# 3. Enable the YouTube Data API v3
# 4. Create credentials (API Key)
# 5. (Recommended) Restrict the key to YouTube Data API v3 for security
#
# IMPORTANT: Never commit your actual credentials.yml file to version control!
youtube_api_key: "YOUR_YOUTUBE_DATA_API_V3_KEY_HERE"
# Example of what a real key looks like (this is not a real key):
# youtube_api_key: "AIzaSyBk7J6k9L4m3N5p6Q8r9S2t4U7v8W1x2Y3z"
# Alternative: You can also use environment variables instead of this file
# Set: export YOUTUBE_API_KEY="your_key_here"
# The server will check for the environment variable first, then fall back to this file