startCommand:
type: stdio
configSchema:
type: object
required:
- GEMINI_API_KEY
- YOUTUBE_API_KEY
properties:
GEMINI_API_KEY:
type: string
description: "Google Gemini API key for AI operations"
YOUTUBE_API_KEY:
type: string
description: "YouTube Data API key for search and comments"
commandFunction: |
(config) => ({
command: 'python',
args: ['main.py'],
env: {
GEMINI_API_KEY: config.GEMINI_API_KEY,
YOUTUBE_API_KEY: config.YOUTUBE_API_KEY
}
})