Skip to content
VS Code

Mindwtr for VS Code

io.github.dongdongbh/mindwtr

Task and project automation for local and self-hosted Mindwtr Cloud data; read-only by default.

client:VS Code transport:stdio runtime:npm

Install Mindwtr in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mindwtr-db-path",
      "description": "MINDWTR_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mindwtr-mcp-cloud-url",
      "description": "MINDWTR_MCP_CLOUD_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mindwtr-mcp-cloud-token",
      "description": "MINDWTR_MCP_CLOUD_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mindwtr": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mindwtr-mcp"
      ],
      "env": {
        "MINDWTR_DB_PATH": "${input:mindwtr-db-path}",
        "MINDWTR_MCP_CLOUD_URL": "${input:mindwtr-mcp-cloud-url}",
        "MINDWTR_MCP_CLOUD_TOKEN": "${input:mindwtr-mcp-cloud-token}"
      }
    }
  }
}

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

Mindwtr in other clients