Google Tasks MCP Server for VS Code
io.github.ebmurha/google-tasks-mcp
Manage Google Tasks from MCP-compatible AI clients.
client:VS Code
transport:stdio
runtime:pypi
Install Google Tasks MCP Server 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-redirect-uri",
"description": "GOOGLE_REDIRECT_URI",
"password": true
},
{
"type": "promptString",
"id": "db-path",
"description": "DB_PATH",
"password": true
},
{
"type": "promptString",
"id": "default-tasklist",
"description": "DEFAULT_TASKLIST",
"password": true
}
],
"servers": {
"google-tasks-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"google-tasks-mcp"
],
"env": {
"GOOGLE_CLIENT_ID": "${input:google-client-id}",
"GOOGLE_CLIENT_SECRET": "${input:google-client-secret}",
"GOOGLE_REDIRECT_URI": "${input:google-redirect-uri}",
"DB_PATH": "${input:db-path}",
"DEFAULT_TASKLIST": "${input:default-tasklist}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs