@softeria/ms-365-mcp-server 0.45.0 → 0.45.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/auth.js +2 -0
- package/dist/endpoints.json +0 -3
- package/logs/mcp-server.log +10 -10
- package/package.json +1 -1
- package/src/endpoints.json +0 -3
package/dist/auth.js
CHANGED
|
@@ -250,6 +250,7 @@ class AuthManager {
|
|
|
250
250
|
const response = await this.msalApp.acquireTokenSilent(silentRequest);
|
|
251
251
|
this.accessToken = response.accessToken;
|
|
252
252
|
this.tokenExpiry = response.expiresOn ? new Date(response.expiresOn).getTime() : null;
|
|
253
|
+
await this.saveTokenCache();
|
|
253
254
|
return this.accessToken;
|
|
254
255
|
} catch {
|
|
255
256
|
logger.error("Silent token acquisition failed");
|
|
@@ -509,6 +510,7 @@ class AuthManager {
|
|
|
509
510
|
};
|
|
510
511
|
try {
|
|
511
512
|
const response = await this.msalApp.acquireTokenSilent(silentRequest);
|
|
513
|
+
await this.saveTokenCache();
|
|
512
514
|
return response.accessToken;
|
|
513
515
|
} catch {
|
|
514
516
|
throw new Error(
|
package/dist/endpoints.json
CHANGED
|
@@ -693,7 +693,6 @@
|
|
|
693
693
|
"pathPattern": "/me/onlineMeetings",
|
|
694
694
|
"method": "get",
|
|
695
695
|
"toolName": "list-online-meetings",
|
|
696
|
-
"scopes": ["OnlineMeetings.Read"],
|
|
697
696
|
"workScopes": ["OnlineMeetings.Read"],
|
|
698
697
|
"llmTip": "List online meetings. Use $filter=joinWebUrl eq '{url}' to find a specific meeting by its Teams join link. Returns meeting IDs needed for transcript access."
|
|
699
698
|
},
|
|
@@ -701,7 +700,6 @@
|
|
|
701
700
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts",
|
|
702
701
|
"method": "get",
|
|
703
702
|
"toolName": "list-meeting-transcripts",
|
|
704
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
705
703
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
706
704
|
"llmTip": "Lists available transcripts for a meeting. Get the meeting ID first via list-online-meetings."
|
|
707
705
|
},
|
|
@@ -709,7 +707,6 @@
|
|
|
709
707
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content",
|
|
710
708
|
"method": "get",
|
|
711
709
|
"toolName": "get-meeting-transcript-content",
|
|
712
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
713
710
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
714
711
|
"acceptType": "text/vtt",
|
|
715
712
|
"llmTip": "Returns the transcript content in WebVTT format with speaker identification and timestamps."
|
package/logs/mcp-server.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
2026-03-
|
|
2
|
-
2026-03-
|
|
3
|
-
2026-03-
|
|
4
|
-
2026-03-
|
|
5
|
-
2026-03-
|
|
6
|
-
2026-03-
|
|
7
|
-
2026-03-
|
|
8
|
-
2026-03-
|
|
9
|
-
2026-03-
|
|
10
|
-
2026-03-
|
|
1
|
+
2026-03-11 19:05:48 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
2
|
+
2026-03-11 19:05:48 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
3
|
+
2026-03-11 19:05:48 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
4
|
+
2026-03-11 19:05:48 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
|
|
5
|
+
2026-03-11 19:05:48 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
|
|
6
|
+
2026-03-11 19:05:50 INFO: Using environment variables for secrets
|
|
7
|
+
2026-03-11 19:05:50 INFO: Using environment variables for secrets
|
|
8
|
+
2026-03-11 19:05:50 INFO: Using environment variables for secrets
|
|
9
|
+
2026-03-11 19:05:50 INFO: Using environment variables for secrets
|
|
10
|
+
2026-03-11 19:05:50 INFO: Using environment variables for secrets
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softeria/ms-365-mcp-server",
|
|
3
|
-
"version": "0.45.
|
|
3
|
+
"version": "0.45.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",
|
package/src/endpoints.json
CHANGED
|
@@ -693,7 +693,6 @@
|
|
|
693
693
|
"pathPattern": "/me/onlineMeetings",
|
|
694
694
|
"method": "get",
|
|
695
695
|
"toolName": "list-online-meetings",
|
|
696
|
-
"scopes": ["OnlineMeetings.Read"],
|
|
697
696
|
"workScopes": ["OnlineMeetings.Read"],
|
|
698
697
|
"llmTip": "List online meetings. Use $filter=joinWebUrl eq '{url}' to find a specific meeting by its Teams join link. Returns meeting IDs needed for transcript access."
|
|
699
698
|
},
|
|
@@ -701,7 +700,6 @@
|
|
|
701
700
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts",
|
|
702
701
|
"method": "get",
|
|
703
702
|
"toolName": "list-meeting-transcripts",
|
|
704
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
705
703
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
706
704
|
"llmTip": "Lists available transcripts for a meeting. Get the meeting ID first via list-online-meetings."
|
|
707
705
|
},
|
|
@@ -709,7 +707,6 @@
|
|
|
709
707
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content",
|
|
710
708
|
"method": "get",
|
|
711
709
|
"toolName": "get-meeting-transcript-content",
|
|
712
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
713
710
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
714
711
|
"acceptType": "text/vtt",
|
|
715
712
|
"llmTip": "Returns the transcript content in WebVTT format with speaker identification and timestamps."
|