-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.09 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.09 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "brightspace-mcp-server",
"version": "1.1.7",
"mcpName": "io.github.rohanmuppa/brightspace",
"description": "MCP server for Brightspace (D2L). Check grades, due dates, assignments, announcements, syllabus, rosters and more via Claude, ChatGPT, Cursor, Windsurf, or any MCP client.",
"type": "module",
"main": "build/index.js",
"bin": {
"brightspace-mcp-server": "build/index.js",
"brightspace-auth": "build/auth-cli.js",
"brightspace-setup": "build/setup.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node build/index.js",
"auth": "node build/auth-cli.js",
"update": "node build/update.js",
"dev": "tsc --watch",
"test": "vitest",
"test:run": "vitest run",
"postinstall": "npx playwright install chromium"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"ajv": "^8.18.0",
"dotenv": "^17.2.4",
"file-type": "^21.3.0",
"playwright": "^1.58.2",
"sanitize-filename": "^1.6.3",
"turndown": "^7.2.2",
"unpdf": "^1.4.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/sanitize-filename": "^1.1.28",
"@types/turndown": "^5.0.6",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "AGPL-3.0-only",
"author": "Rohan Muppa",
"homepage": "https://github.com/RohanMuppa/brightspace-mcp-server",
"repository": {
"type": "git",
"url": "https://github.com/RohanMuppa/brightspace-mcp-server.git"
},
"bugs": {
"url": "https://github.com/RohanMuppa/brightspace-mcp-server/issues"
},
"keywords": [
"mcp",
"mcp-server",
"brightspace",
"d2l",
"lms",
"education",
"grades",
"courses",
"claude",
"chatgpt",
"cursor",
"windsurf",
"purdue",
"university",
"model-context-protocol",
"brightspace-api",
"d2l-api",
"assignments",
"announcements",
"syllabus",
"student",
"ai",
"duo",
"sso",
"d2l-brightspace"
]
}