YouTube Shorts Agent for VS Code
io.github.davidmosiah/youtube-shorts-agent
Agent-first YouTube Shorts uploader: dry-run validation, OAuth checks, synthetic-media metadata.
client:VS Code
transport:stdio
runtime:npm
Install YouTube Shorts Agent in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "youtube-dry-run",
"description": "YOUTUBE_DRY_RUN",
"password": true
},
{
"type": "promptString",
"id": "youtube-client-id",
"description": "YOUTUBE_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "youtube-client-secret",
"description": "YOUTUBE_CLIENT_SECRET",
"password": true
}
],
"servers": {
"youtube-shorts-agent": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"youtube-shorts-agent"
],
"env": {
"YOUTUBE_DRY_RUN": "${input:youtube-dry-run}",
"YOUTUBE_CLIENT_ID": "${input:youtube-client-id}",
"YOUTUBE_CLIENT_SECRET": "${input:youtube-client-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs