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
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "gogcli-mcp-classroom",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "Chris Hall",
|
|
6
|
+
"email": "chris.c.hall@gmail.com"
|
|
7
|
+
},
|
|
8
|
+
"metadata": {
|
|
9
|
+
"description": "Extended Google Classroom for Claude via gogcli — auth + full Classroom support (courses, rosters, coursework, submissions, announcements, topics, invitations)",
|
|
10
|
+
"version": "2.0.4"
|
|
11
|
+
},
|
|
12
|
+
"plugins": [
|
|
13
|
+
{
|
|
14
|
+
"name": "gogcli-mcp-classroom",
|
|
15
|
+
"displayName": "gogcli (Classroom)",
|
|
16
|
+
"source": "./",
|
|
17
|
+
"description": "Extended Google Classroom for Claude via gogcli — auth + full Classroom support (courses, rosters, coursework, submissions, announcements, topics, invitations)",
|
|
18
|
+
"version": "2.0.4",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "Chris Hall"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/chrischall/gogcli-mcp/tree/main/packages/gogcli-mcp-classroom",
|
|
23
|
+
"repository": "https://github.com/chrischall/gogcli-mcp",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"google",
|
|
27
|
+
"classroom",
|
|
28
|
+
"education",
|
|
29
|
+
"gogcli",
|
|
30
|
+
"gog",
|
|
31
|
+
"courses",
|
|
32
|
+
"assignments",
|
|
33
|
+
"grading",
|
|
34
|
+
"students",
|
|
35
|
+
"teachers"
|
|
36
|
+
],
|
|
37
|
+
"category": "productivity"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gogcli-mcp-classroom",
|
|
3
|
+
"displayName": "gogcli (Classroom)",
|
|
4
|
+
"version": "2.0.4",
|
|
5
|
+
"description": "Extended Google Classroom for Claude via gogcli — auth + full Classroom support (courses, rosters, coursework, submissions, announcements, topics, invitations)",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Chris Hall",
|
|
8
|
+
"email": "chris.c.hall@gmail.com"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/chrischall/gogcli-mcp/tree/main/packages/gogcli-mcp-classroom",
|
|
11
|
+
"repository": "https://github.com/chrischall/gogcli-mcp",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"google",
|
|
15
|
+
"classroom",
|
|
16
|
+
"education",
|
|
17
|
+
"gogcli",
|
|
18
|
+
"gog",
|
|
19
|
+
"courses",
|
|
20
|
+
"assignments",
|
|
21
|
+
"grading",
|
|
22
|
+
"students",
|
|
23
|
+
"teachers"
|
|
24
|
+
],
|
|
25
|
+
"skills": "./SKILL.md",
|
|
26
|
+
"mcp": "./.mcp.json"
|
|
27
|
+
}
|
package/.mcp.json
ADDED
package/.mcpbignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Source — dist/ is all that's needed at runtime
|
|
2
|
+
src/
|
|
3
|
+
tests/
|
|
4
|
+
|
|
5
|
+
# Dev tooling
|
|
6
|
+
node_modules/
|
|
7
|
+
coverage/
|
|
8
|
+
tsconfig.json
|
|
9
|
+
tsconfig.tsbuildinfo
|
|
10
|
+
vitest.config.ts
|
|
11
|
+
*.skill
|
|
12
|
+
*.mcpb
|
|
13
|
+
|
|
14
|
+
# Plugin/marketplace files (not needed in the MCPB bundle)
|
|
15
|
+
.claude-plugin/
|
|
16
|
+
.mcp.json
|
|
17
|
+
|
|
18
|
+
# GitHub/CI (lives at monorepo root, belt-and-suspenders)
|
|
19
|
+
.github/
|
|
20
|
+
|
|
21
|
+
# Local config
|
|
22
|
+
.env
|
|
23
|
+
.env.*
|
|
24
|
+
|
|
25
|
+
# Git
|
|
26
|
+
.git/
|
|
27
|
+
.gitignore
|