Skip to content
VS Code

pls touch grass for VS Code

io.github.rinava/pls-touch-grass

An MCP server that knows how long it's been since you touched grass

client:VS Code transport:stdio runtime:npm

Install pls touch grass in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "grass-state-file",
      "description": "GRASS_STATE_FILE",
      "password": true
    }
  ],
  "servers": {
    "pls-touch-grass": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pls-touch-grass-mcp"
      ],
      "env": {
        "GRASS_STATE_FILE": "${input:grass-state-file}"
      }
    }
  }
}

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

pls touch grass in other clients