@softeria/ms-365-mcp-server 0.4.4 → 0.4.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.
- package/README.md +9 -0
- package/dist/auth.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,6 +104,15 @@ Environment variables:
|
|
|
104
104
|
- `LOG_LEVEL`: Set logging level (default: 'info')
|
|
105
105
|
- `SILENT=true`: Disable console output
|
|
106
106
|
|
|
107
|
+
## Support
|
|
108
|
+
|
|
109
|
+
If you're having problems or need help:
|
|
110
|
+
|
|
111
|
+
- Create an [issue](https://github.com/softeria/ms-365-mcp-server/issues)
|
|
112
|
+
- Start a [discussion](https://github.com/softeria/ms-365-mcp-server/discussions)
|
|
113
|
+
- Email: eirikb@eirikb.no
|
|
114
|
+
- Discord: https://discord.gg/WvGVNScrAZ or @eirikb
|
|
115
|
+
|
|
107
116
|
## License
|
|
108
117
|
|
|
109
118
|
MIT © 2025 Softeria
|
package/dist/auth.js
CHANGED
|
@@ -18,7 +18,7 @@ const DEFAULT_CONFIG = {
|
|
|
18
18
|
},
|
|
19
19
|
};
|
|
20
20
|
const SCOPE_HIERARCHY = {
|
|
21
|
-
'Mail.ReadWrite': ['Mail.Read'
|
|
21
|
+
'Mail.ReadWrite': ['Mail.Read'],
|
|
22
22
|
'Calendars.ReadWrite': ['Calendars.Read'],
|
|
23
23
|
'Files.ReadWrite': ['Files.Read'],
|
|
24
24
|
'Tasks.ReadWrite': ['Tasks.Read'],
|