Skip to content
VS Code

gtasks mcp for VS Code

io.github.alvinjchoi/gtasks-mcp

Manage Google Tasks via MCP: list, search, create, update, move, and clear tasks.

client:VS Code transport:stdio runtime:npm

Install gtasks mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-client-id",
      "description": "GOOGLE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-client-secret",
      "description": "GOOGLE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-refresh-token",
      "description": "GOOGLE_REFRESH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "gtasks-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@alvincrave/gtasks-mcp"
      ],
      "env": {
        "GOOGLE_CLIENT_ID": "${input:google-client-id}",
        "GOOGLE_CLIENT_SECRET": "${input:google-client-secret}",
        "GOOGLE_REFRESH_TOKEN": "${input:google-refresh-token}"
      }
    }
  }
}

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

gtasks mcp in other clients