gogcli mcp classroom for VS Code
io.github.chrischall/gogcli-mcp-classroom
Google Classroom via gogcli for Claude — courses, assignments, submissions, grading
client:VS Code
transport:stdio
runtime:npm
Install gogcli mcp classroom in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gog-account",
"description": "GOG_ACCOUNT",
"password": true
},
{
"type": "promptString",
"id": "gog-path",
"description": "GOG_PATH",
"password": true
}
],
"servers": {
"gogcli-mcp-classroom": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"gogcli-mcp-classroom"
],
"env": {
"GOG_ACCOUNT": "${input:gog-account}",
"GOG_PATH": "${input:gog-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs