Skip to content
VS Code

reMarkable MCP Server (Read/Write) for VS Code

io.github.praveensehgal/remarkable

Read, write, and manage your reMarkable tablet — browse, upload, create folders, move, delete, OCR

client:VS Code transport:stdio runtime:pypi

Install reMarkable MCP Server (Read/Write) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "remarkable-ssh-host",
      "description": "REMARKABLE_SSH_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "remarkable-ssh-password",
      "description": "REMARKABLE_SSH_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "remarkable": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "remarkable-mcp-rw"
      ],
      "env": {
        "REMARKABLE_SSH_HOST": "${input:remarkable-ssh-host}",
        "REMARKABLE_SSH_PASSWORD": "${input:remarkable-ssh-password}"
      }
    }
  }
}

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

reMarkable MCP Server (Read/Write) in other clients