Skip to content
VS Code

kenotex mcp for VS Code

com.kenxcomp/kenotex-mcp

Let your coding agent manage real todos, events, and check-in habits in Kenotex on your Mac.

client:VS Code transport:stdio runtime:npm

Install kenotex mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kenotex-token",
      "description": "KENOTEX_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kenotex-host",
      "description": "KENOTEX_HOST",
      "password": true
    }
  ],
  "servers": {
    "kenotex-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "kenotex-mcp"
      ],
      "env": {
        "KENOTEX_TOKEN": "${input:kenotex-token}",
        "KENOTEX_HOST": "${input:kenotex-host}"
      }
    }
  }
}

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

kenotex mcp in other clients