brightspace-mcp-server 1.2.2 → 1.2.3

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 +0 -32
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -95,38 +95,6 @@ npx brightspace-mcp-server auth
95
95
  | Discussions | "What are people saying in the final project thread?" · "Summarize the latest discussion posts" |
96
96
  | Planning | "Build me a study schedule based on my upcoming due dates" · "Which class needs the most attention right now?" |
97
97
 
98
- ## Troubleshooting
99
-
100
- **"Not authenticated"** → Run `npx brightspace-mcp-server auth`
101
-
102
- **AI client not responding** → Quit and reopen it completely (not just close the window)
103
-
104
- **Need to redo setup** → Run `npx brightspace-mcp-server setup` again
105
-
106
- **Config location** → `~/.brightspace-mcp/config.json` (you can edit this directly)
107
-
108
- **Browser launch times out (Windows)** → Open Task Manager, end all Chromium/Chrome processes, and try again. If it persists, add the Playwright Chromium folder to your antivirus exclusion list.
109
-
110
- **Auth fails in WSL or Docker** → Chromium dependencies may be missing. Run `npx playwright install-deps chromium` to install them. The server automatically adds `--no-sandbox` for these environments.
111
-
112
- **Headless login fails (Windows)** → SSO login flows can fail in headless mode on Windows. The default is headed (a browser window opens). If you set `D2L_HEADLESS=true` and auth fails, switch back to headed mode.
113
-
114
- **Auth hangs or browser won't open**
115
-
116
- Delete stale session files and retry:
117
- ```bash
118
- rm -rf ~/.d2l-session/session.json ~/.d2l-session/storage-state.json ~/.d2l-session/browser-data/SingletonLock
119
- npx brightspace-mcp-server auth
120
- ```
121
-
122
- **Still running an old version after update**
123
-
124
- npx caches packages locally. Clear the cache to force a fresh download:
125
- ```bash
126
- npx clear-npx-cache
127
- npx brightspace-mcp-server@latest
128
- ```
129
-
130
98
  ## Security
131
99
 
132
100
  - Credentials stay on your machine at `~/.brightspace-mcp/config.json` (restricted permissions)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brightspace-mcp-server",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "mcpName": "io.github.rohanmuppa/brightspace",
5
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",