@charlie.act7/canvas-mcp-server 1.1.8 → 1.2.1
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/LICENSE +21 -0
- package/README.md +49 -22
- package/dist/http-server.js +139 -5
- package/dist/index.js +47 -6
- package/dist/services/agent-runner.js +214 -0
- package/dist/services/canvas-client.js +327 -11
- package/dist/services/gemini-runner.js +124 -0
- package/dist/tools/analytics-tools.js +118 -0
- package/dist/tools/assignment-tools.js +77 -1
- package/dist/tools/communication-tools.js +101 -0
- package/dist/tools/conversation-tools.js +130 -0
- package/dist/tools/course-tools.js +142 -0
- package/dist/tools/enrollment-tools.js +202 -0
- package/dist/tools/module-tools.js +50 -7
- package/dist/tools/new-quiz-tools.js +357 -0
- package/dist/tools/peer-review-tools.js +130 -0
- package/dist/tools/quiz-tools.js +384 -3
- package/dist/tools/rubric-tools.js +159 -0
- package/package.json +74 -66
- package/.claude-plugin/plugin.json +0 -11
- package/.mcp.json +0 -10
package/package.json
CHANGED
|
@@ -1,68 +1,76 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
2
|
+
"name": "@charlie.act7/canvas-mcp-server",
|
|
3
|
+
"repository": {
|
|
4
|
+
"type": "git",
|
|
5
|
+
"url": "git+https://github.com/CharlieCardenasToledo/mcp-canvas-server.git"
|
|
6
|
+
},
|
|
7
|
+
"homepage": "https://github.com/CharlieCardenasToledo/mcp-canvas-server#readme",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/CharlieCardenasToledo/mcp-canvas-server/issues"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"version": "1.2.1",
|
|
15
|
+
"description": "MCP Server for Canvas LMS - Use AI to interact with your courses, assignments, and grades.",
|
|
16
|
+
"main": "dist/index.js",
|
|
17
|
+
"bin": {
|
|
18
|
+
"canvas-mcp": "dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist/index.js",
|
|
23
|
+
"dist/http-server.js",
|
|
24
|
+
"dist/common",
|
|
25
|
+
"dist/prompts",
|
|
26
|
+
"dist/resources",
|
|
27
|
+
"dist/services",
|
|
28
|
+
"dist/tools",
|
|
29
|
+
"README.md",
|
|
30
|
+
"llms-install.md"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsc",
|
|
34
|
+
"start": "node dist/index.js",
|
|
35
|
+
"start:http": "node dist/index.js serve-http",
|
|
36
|
+
"dev": "tsc --watch",
|
|
37
|
+
"chat": "tsx src/ollama_bridge.ts",
|
|
38
|
+
"prepublishOnly": "npm run build"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"mcp",
|
|
42
|
+
"canvas",
|
|
43
|
+
"lms",
|
|
44
|
+
"ai",
|
|
45
|
+
"agent",
|
|
46
|
+
"server"
|
|
47
|
+
],
|
|
48
|
+
"author": "Charlie Cárdenas Toledo",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@fastify/swagger": "^9.5.2",
|
|
52
|
+
"@fastify/swagger-ui": "^5.2.3",
|
|
53
|
+
"@google/genai": "^2.8.0",
|
|
54
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
55
|
+
"axios": "^1.6.0",
|
|
56
|
+
"chalk": "^5.3.0",
|
|
57
|
+
"commander": "^11.1.0",
|
|
58
|
+
"conf": "^12.0.0",
|
|
59
|
+
"dotenv": "^16.3.1",
|
|
60
|
+
"fastify": "^5.6.1",
|
|
61
|
+
"form-data": "^4.0.5",
|
|
62
|
+
"inquirer": "^9.2.12",
|
|
63
|
+
"ollama": "^0.6.3",
|
|
64
|
+
"zod": "^3.22.4"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@types/inquirer": "^9.0.7",
|
|
68
|
+
"@types/node": "^20.10.0",
|
|
69
|
+
"nodemon": "^3.1.11",
|
|
70
|
+
"tsx": "^4.21.0",
|
|
71
|
+
"typescript": "^5.3.0"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
|
+
}
|
|
68
76
|
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "canvas-lms",
|
|
3
|
-
"description": "Canvas LMS integration for teachers. Manage courses, assignments, grades, quizzes, students, modules, and more — directly from Claude Code.",
|
|
4
|
-
"version": "1.1.0",
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "CharlieCardenasToledo"
|
|
7
|
-
},
|
|
8
|
-
"homepage": "https://github.com/CharlieCardenasToledo/canvas-mcp-server",
|
|
9
|
-
"repository": "https://github.com/CharlieCardenasToledo/canvas-mcp-server",
|
|
10
|
-
"license": "MIT"
|
|
11
|
-
}
|