Skip to content
VS Code

google tasks for VS Code

io.github.girmmy/google-tasks

Read/write Google Tasks: create, update, complete, delete, move tasks and lists, with due dates.

client:VS Code transport:stdio runtime:npm

Install google tasks in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-tasks-client-secret",
      "description": "GOOGLE_TASKS_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-tasks-token-path",
      "description": "GOOGLE_TASKS_TOKEN_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-tasks-oauth-port",
      "description": "GOOGLE_TASKS_OAUTH_PORT",
      "password": true
    }
  ],
  "servers": {
    "google-tasks": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@girmmy/google-tasks-mcp-server"
      ],
      "env": {
        "GOOGLE_TASKS_CLIENT_SECRET": "${input:google-tasks-client-secret}",
        "GOOGLE_TASKS_TOKEN_PATH": "${input:google-tasks-token-path}",
        "GOOGLE_TASKS_OAUTH_PORT": "${input:google-tasks-oauth-port}"
      }
    }
  }
}

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

google tasks in other clients