Skip to content
VS Code

reMarkable MCP Server for VS Code

io.github.sammorrowdrums/remarkable

Read, render, search, and manage reMarkable documents through MCP

client:VS Code transport:stdio runtime:pypi

Install reMarkable MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "remarkable-token",
      "description": "REMARKABLE_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "remarkable": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "remarkable-mcp"
      ],
      "env": {
        "REMARKABLE_TOKEN": "${input:remarkable-token}"
      }
    }
  }
}

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 in other clients