reMarkable MCP Server for VS Code
io.github.wavyrai/rm-mcp
Access your reMarkable tablet - read documents, browse files, extract text and OCR handwritten notes
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": {
"rm-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"rm-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