brightspace-mcp-server 1.1.5 → 1.1.6

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.
Files changed (2) hide show
  1. package/README.md +29 -3
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  > **By [Rohan Muppa](https://github.com/rohanmuppa), ECE @ Purdue**
4
4
 
5
- Talk to your Brightspace courses with AI. Ask about grades, due dates, announcements, and more. Works with Claude, ChatGPT, and Cursor.
5
+ Talk to your Brightspace courses with AI. Ask about grades, due dates, announcements, and more. Works with Claude, ChatGPT, Cursor, and Windsurf.
6
6
 
7
- This is an [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server. MCP lets AI apps like ChatGPT or Claude talk to outside tools. This server connects your AI to Brightspace so it can pull your grades, assignments, and course content on demand.
7
+ This is an [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server the open standard for connecting AI apps to external tools. This server connects your AI to D2L Brightspace so it can pull your grades, assignments, syllabus, and course content on demand.
8
8
 
9
- Works with any school that uses Brightspace.
9
+ Works with any school that uses D2L Brightspace — Purdue, USC, Carleton, and hundreds more.
10
10
 
11
11
  <p align="center">
12
12
  <img src="https://raw.githubusercontent.com/RohanMuppa/brightspace-mcp-server/main/docs/how-it-works.svg" alt="Architecture diagram" width="100%">
@@ -118,6 +118,32 @@ Windows:
118
118
  }
119
119
  ```
120
120
 
121
+ **Windsurf** (`~/.windsurf/mcp.json`):
122
+
123
+ Mac/Linux:
124
+ ```json
125
+ {
126
+ "mcpServers": {
127
+ "brightspace": {
128
+ "command": "npx",
129
+ "args": ["-y", "brightspace-mcp-server@latest"]
130
+ }
131
+ }
132
+ }
133
+ ```
134
+
135
+ Windows:
136
+ ```json
137
+ {
138
+ "mcpServers": {
139
+ "brightspace": {
140
+ "command": "cmd",
141
+ "args": ["/c", "npx", "-y", "brightspace-mcp-server@latest"]
142
+ }
143
+ }
144
+ }
145
+ ```
146
+
121
147
  After adding, restart your AI client. You still need to run `npx brightspace-mcp-server setup` first to save your credentials.
122
148
 
123
149
  ## Session Expired?
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "brightspace-mcp-server",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "mcpName": "io.github.rohanmuppa/brightspace",
5
- "description": "MCP server for Brightspace (D2L). Check grades, due dates, announcements, rosters and more via Claude, ChatGPT, Cursor, or any MCP client.",
5
+ "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.",
6
6
  "type": "module",
7
7
  "main": "build/index.js",
8
8
  "bin": {
@@ -69,10 +69,19 @@
69
69
  "claude",
70
70
  "chatgpt",
71
71
  "cursor",
72
+ "windsurf",
72
73
  "purdue",
73
74
  "university",
74
75
  "model-context-protocol",
75
76
  "brightspace-api",
76
- "d2l-api"
77
+ "d2l-api",
78
+ "assignments",
79
+ "announcements",
80
+ "syllabus",
81
+ "student",
82
+ "ai",
83
+ "duo",
84
+ "sso",
85
+ "d2l-brightspace"
77
86
  ]
78
87
  }