@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 CHANGED
@@ -9,7 +9,7 @@ COPY . .
9
9
  RUN npm run generate
10
10
  RUN npm run build
11
11
 
12
- FROM node:20-alpine AS release
12
+ FROM node:24-alpine AS release
13
13
 
14
14
  WORKDIR /app
15
15
 
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