uploadcheck for VS Code
app.uploadcheck/uploadcheck
QC videos, podcasts, and clips before upload — timestamped flags with agent-ready repair prompts.
client:VS Code
transport:stdio
runtime:npm
Install uploadcheck in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "uploadcheck-api-base-url",
"description": "UPLOADCHECK_API_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "uploadcheck-api-key",
"description": "UPLOADCHECK_API_KEY",
"password": true
}
],
"servers": {
"uploadcheck": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
],
"env": {
"UPLOADCHECK_API_BASE_URL": "${input:uploadcheck-api-base-url}",
"UPLOADCHECK_API_KEY": "${input:uploadcheck-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs