mcp upload for VS Code
sh.objekt/mcp-upload
Public file storage for AI agents. Upload files and get a permalink back.
client:VS Code
transport:stdio
runtime:npm
Install mcp upload in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "objekt-api-key",
"description": "OBJEKT_API_KEY",
"password": true
}
],
"servers": {
"mcp-upload": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@objekt.sh/mcp-upload"
],
"env": {
"OBJEKT_API_KEY": "${input:objekt-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