yutu for VS Code
io.github.eat-pray-ai/yutu
The AI-powered toolkit that grows your YouTube channel on autopilot
client:VS Code
transport:stdio
runtime:npm
Install yutu in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "yutu-credential",
"description": "YUTU_CREDENTIAL",
"password": true
},
{
"type": "promptString",
"id": "yutu-cache-token",
"description": "YUTU_CACHE_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "yutu-log-level",
"description": "YUTU_LOG_LEVEL",
"password": true
}
],
"servers": {
"yutu": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@eat-pray-ai/yutu"
],
"env": {
"YUTU_CREDENTIAL": "${input:yutu-credential}",
"YUTU_CACHE_TOKEN": "${input:yutu-cache-token}",
"YUTU_LOG_LEVEL": "${input:yutu-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs