@softeria/ms-365-mcp-server 0.114.2 → 0.114.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.
- package/Dockerfile +1 -1
- package/README.md +13 -1
- package/dist/endpoints.json +296 -0
- package/dist/tool-categories.js +36 -23
- package/docs/deployment.md +5 -1
- package/package.json +1 -1
- package/src/endpoints.json +296 -0
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -504,7 +504,19 @@ npx @softeria/ms-365-mcp-server --preset mail
|
|
|
504
504
|
npx @softeria/ms-365-mcp-server --list-presets # See all available presets
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
Available presets: `mail`, `calendar`, `files`, `personal`, `work`, `excel`, `contacts`, `tasks`, `onenote`, `search`, `users`, `all`
|
|
507
|
+
Available presets: `mail`, `calendar`, `files`, `personal`, `work`, `excel`, `contacts`, `tasks`, `onenote`, `search`, `users`, `outlook`, `onedrive`, `teams`, `all`
|
|
508
|
+
|
|
509
|
+
Each endpoint in `endpoints.json` declares which presets it belongs to via a `presets` array, so every preset is an exact tool-name allow-list that never over-matches across apps (e.g. `mail` does not include shared-mailbox tools; those are in `work`).
|
|
510
|
+
|
|
511
|
+
The `outlook`, `onedrive` and `teams` presets are app-scoped: they expose exactly one Microsoft app. Use these for "expose exactly one app" deployments:
|
|
512
|
+
|
|
513
|
+
```bash
|
|
514
|
+
# Outlook only (mail + calendar + contacts; no shared mailboxes, no files)
|
|
515
|
+
npx @softeria/ms-365-mcp-server --preset outlook
|
|
516
|
+
|
|
517
|
+
# Teams only (requires --org-mode)
|
|
518
|
+
npx @softeria/ms-365-mcp-server --org-mode --preset teams
|
|
519
|
+
```
|
|
508
520
|
|
|
509
521
|
## Dynamic Tool Discovery
|
|
510
522
|
|