Skip to content
VS Code

mcp standardnotes for VS Code

io.github.lozit/mcp-standardnotes

End-to-end encrypted access to a Standard Notes vault (protocol 004, local stdio only).

client:VS Code transport:stdio runtime:npm

Install mcp standardnotes in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sn-email",
      "description": "SN_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sn-server-url",
      "description": "SN_SERVER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sn-cert-fingerprint",
      "description": "SN_CERT_FINGERPRINT",
      "password": true
    }
  ],
  "servers": {
    "mcp-standardnotes": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-standardnotes"
      ],
      "env": {
        "SN_EMAIL": "${input:sn-email}",
        "SN_SERVER_URL": "${input:sn-server-url}",
        "SN_CERT_FINGERPRINT": "${input:sn-cert-fingerprint}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp standardnotes in other clients