Supernote for VS Code
io.github.ridget/supernote-mcp
Capture the screen, read/render notes, and upload files on a Ratta Supernote from an AI agent.
client:VS Code
transport:stdio
runtime:npm
Install Supernote in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "supernote-ip",
"description": "SUPERNOTE_IP",
"password": true
},
{
"type": "promptString",
"id": "supernote-discover",
"description": "SUPERNOTE_DISCOVER",
"password": true
}
],
"servers": {
"supernote-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"supernote-mcp"
],
"env": {
"SUPERNOTE_IP": "${input:supernote-ip}",
"SUPERNOTE_DISCOVER": "${input:supernote-discover}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs