@softeria/ms-365-mcp-server 0.114.1 → 0.114.2
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/dist/server.js +1 -1
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -205,7 +205,7 @@ class MicrosoftGraphServer {
|
|
|
205
205
|
const protocol = req.secure ? "https" : "http";
|
|
206
206
|
const requestOrigin = `${protocol}://${req.get("host")}`;
|
|
207
207
|
const browserBase = publicBase ?? requestOrigin;
|
|
208
|
-
const scopes = this.options.obo ? [
|
|
208
|
+
const scopes = this.options.obo ? [`${this.secrets.clientId}/access_as_user`] : resolveAuthScopes(this.options);
|
|
209
209
|
res.json({
|
|
210
210
|
resource: `${requestOrigin}/mcp`,
|
|
211
211
|
authorization_servers: [browserBase],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softeria/ms-365-mcp-server",
|
|
3
|
-
"version": "0.114.
|
|
3
|
+
"version": "0.114.2",
|
|
4
4
|
"description": " A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|