pocketnook for VS Code
io.github.shotintoeternity/pocketnook
Deploy repositories or local folders to private Pocketnook URLs from any MCP client.
client:VS Code
transport:stdio
runtime:npm
Install pocketnook in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pocketnook-token",
"description": "POCKETNOOK_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "pocketnook-url",
"description": "POCKETNOOK_URL",
"password": true
}
],
"servers": {
"pocketnook": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@pocketnook/mcp"
],
"env": {
"POCKETNOOK_TOKEN": "${input:pocketnook-token}",
"POCKETNOOK_URL": "${input:pocketnook-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs