gogcli-mcp-classroom 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +40 -0
- package/.claude-plugin/plugin.json +27 -0
- package/.mcp.json +14 -0
- package/.mcpbignore +27 -0
- package/dist/index.js +1330 -582
- package/manifest.json +1 -1
- package/package.json +3 -2
- package/server.json +35 -0
package/manifest.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"manifest_version": "0.3",
|
|
4
4
|
"name": "gogcli-mcp-classroom",
|
|
5
5
|
"display_name": "gogcli (Classroom)",
|
|
6
|
-
"version": "2.0.
|
|
6
|
+
"version": "2.0.4",
|
|
7
7
|
"description": "Extended Google Classroom for Claude via gogcli — auth + full Classroom support (courses, rosters, coursework, submissions, announcements, topics, invitations)",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Chris Hall",
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gogcli-mcp-classroom",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
|
+
"mcpName": "io.github.chrischall/gogcli-mcp-classroom",
|
|
4
5
|
"description": "Extended Google Classroom MCP server via gogcli — auth + full Classroom support",
|
|
5
6
|
"author": "Claude Code (AI) <https://www.anthropic.com/claude>",
|
|
6
7
|
"repository": {
|
|
@@ -24,7 +25,7 @@
|
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
27
|
-
"zod": "^4.3
|
|
28
|
+
"zod": "^4.4.3"
|
|
28
29
|
},
|
|
29
30
|
"license": "MIT",
|
|
30
31
|
"keywords": [
|
package/server.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.chrischall/gogcli-mcp-classroom",
|
|
4
|
+
"description": "Google Classroom via gogcli for Claude — courses, assignments, submissions, grading",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/chrischall/gogcli-mcp",
|
|
7
|
+
"source": "github",
|
|
8
|
+
"subfolder": "packages/gogcli-mcp-classroom"
|
|
9
|
+
},
|
|
10
|
+
"version": "2.0.4",
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"registryType": "npm",
|
|
14
|
+
"identifier": "gogcli-mcp-classroom",
|
|
15
|
+
"version": "2.0.4",
|
|
16
|
+
"transport": {
|
|
17
|
+
"type": "stdio"
|
|
18
|
+
},
|
|
19
|
+
"environmentVariables": [
|
|
20
|
+
{
|
|
21
|
+
"name": "GOG_ACCOUNT",
|
|
22
|
+
"description": "Email address of the Google account to use (matches gogcli auth)",
|
|
23
|
+
"isRequired": false,
|
|
24
|
+
"format": "string"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "GOG_PATH",
|
|
28
|
+
"description": "Override path to the gogcli binary (auto-discovered otherwise)",
|
|
29
|
+
"isRequired": false,
|
|
30
|
+
"format": "string"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|