Skip to content
VS Code

talktoplanb mcp for VS Code

io.github.jmlee850623/talktoplanb-mcp

MCP server for TalkToPlanB: list rooms, read & send messages (WhatsApp alternative).

client:VS Code transport:stdio runtime:npm

Install talktoplanb mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "talktoplanb-api-key",
      "description": "TALKTOPLANB_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "talktoplanb-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "talktoplanb-mcp"
      ],
      "env": {
        "TALKTOPLANB_API_KEY": "${input:talktoplanb-api-key}"
      }
    }
  }
}

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

talktoplanb mcp in other clients