Skip to content
VS Code

remind mcp for VS Code

io.github.chrischall/remind-mcp

Read Remind classes, chats and messages, and manage notification settings.

client:VS Code transport:stdio runtime:npm

Install remind mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "remind-cookie",
      "description": "REMIND_COOKIE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "remind-csrf-token",
      "description": "REMIND_CSRF_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "remind-ws-port",
      "description": "REMIND_WS_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "remind-session-file",
      "description": "REMIND_SESSION_FILE",
      "password": true
    }
  ],
  "servers": {
    "remind-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@chrischall/remind-mcp"
      ],
      "env": {
        "REMIND_COOKIE": "${input:remind-cookie}",
        "REMIND_CSRF_TOKEN": "${input:remind-csrf-token}",
        "REMIND_WS_PORT": "${input:remind-ws-port}",
        "REMIND_SESSION_FILE": "${input:remind-session-file}"
      }
    }
  }
}

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

remind mcp in other clients