We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Prajwal-ak-0/youtube-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
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
}
})