ReClip for VS Code
io.github.yagyaanshk/reclip
Inspect and download authorized media or precise clips locally with yt-dlp.
client:VS Code
transport:stdio
runtime:pypi
Install ReClip in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "reclip-mcp-download-dir",
"description": "RECLIP_MCP_DOWNLOAD_DIR",
"password": true
},
{
"type": "promptString",
"id": "reclip-mcp-max-clip-seconds",
"description": "RECLIP_MCP_MAX_CLIP_SECONDS",
"password": true
}
],
"servers": {
"reclip": {
"type": "stdio",
"command": "uvx",
"args": [
"reclip-mcp"
],
"env": {
"RECLIP_MCP_DOWNLOAD_DIR": "${input:reclip-mcp-download-dir}",
"RECLIP_MCP_MAX_CLIP_SECONDS": "${input:reclip-mcp-max-clip-seconds}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs