AppsGolem YouTube Cutter for VS Code
io.github.apancyborg/appsgolem-mcp
Cut clips from YouTube videos in any format and get a direct download URL.
client:VS Code
transport:stdio
runtime:npm
Install AppsGolem YouTube Cutter in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "appsgolem-api-key",
"description": "APPSGOLEM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "appsgolem-api-base",
"description": "APPSGOLEM_API_BASE",
"password": true
}
],
"servers": {
"appsgolem-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"appsgolem-mcp"
],
"env": {
"APPSGOLEM_API_KEY": "${input:appsgolem-api-key}",
"APPSGOLEM_API_BASE": "${input:appsgolem-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs