NAVER MYBOX for VS Code
io.github.java-jaydev/naver-mybox-mcp
List, search, download and upload files in a NAVER MYBOX (네이버 마이박스) cloud drive.
client:VS Code
transport:stdio
runtime:pypi
Install NAVER MYBOX in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mybox-pat",
"description": "MYBOX_PAT",
"password": true
}
],
"servers": {
"naver-mybox-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"naver-mybox-mcp"
],
"env": {
"MYBOX_PAT": "${input:mybox-pat}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs