@softeria/ms-365-mcp-server 0.53.0 → 0.53.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/endpoints.json +9 -5
- package/dist/server.js +2 -0
- package/logs/mcp-server.log +10 -10
- package/package.json +1 -1
- package/src/endpoints.json +9 -5
package/dist/endpoints.json
CHANGED
|
@@ -854,14 +854,20 @@
|
|
|
854
854
|
"pathPattern": "/search/query",
|
|
855
855
|
"method": "post",
|
|
856
856
|
"toolName": "search-query",
|
|
857
|
-
"
|
|
858
|
-
|
|
857
|
+
"workScopes": [
|
|
858
|
+
"Mail.Read",
|
|
859
|
+
"Calendars.Read",
|
|
860
|
+
"Files.Read.All",
|
|
861
|
+
"People.Read",
|
|
862
|
+
"Sites.Read.All",
|
|
863
|
+
"Chat.Read",
|
|
864
|
+
"ChannelMessage.Read.All"
|
|
865
|
+
]
|
|
859
866
|
},
|
|
860
867
|
{
|
|
861
868
|
"pathPattern": "/me/onlineMeetings",
|
|
862
869
|
"method": "get",
|
|
863
870
|
"toolName": "list-online-meetings",
|
|
864
|
-
"scopes": ["OnlineMeetings.Read"],
|
|
865
871
|
"workScopes": ["OnlineMeetings.Read"],
|
|
866
872
|
"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."
|
|
867
873
|
},
|
|
@@ -869,7 +875,6 @@
|
|
|
869
875
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts",
|
|
870
876
|
"method": "get",
|
|
871
877
|
"toolName": "list-meeting-transcripts",
|
|
872
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
873
878
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
874
879
|
"llmTip": "Lists available transcripts for a meeting. Get the meeting ID first via list-online-meetings."
|
|
875
880
|
},
|
|
@@ -877,7 +882,6 @@
|
|
|
877
882
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content",
|
|
878
883
|
"method": "get",
|
|
879
884
|
"toolName": "get-meeting-transcript-content",
|
|
880
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
881
885
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
882
886
|
"acceptType": "text/vtt",
|
|
883
887
|
"llmTip": "Returns the transcript content in WebVTT format with speaker identification and timestamps."
|
package/dist/server.js
CHANGED
|
@@ -309,6 +309,7 @@ class MicrosoftGraphServer {
|
|
|
309
309
|
});
|
|
310
310
|
res.on("close", () => {
|
|
311
311
|
transport.close();
|
|
312
|
+
server.close();
|
|
312
313
|
});
|
|
313
314
|
await server.connect(transport);
|
|
314
315
|
await transport.handleRequest(req, res, void 0);
|
|
@@ -352,6 +353,7 @@ class MicrosoftGraphServer {
|
|
|
352
353
|
});
|
|
353
354
|
res.on("close", () => {
|
|
354
355
|
transport.close();
|
|
356
|
+
server.close();
|
|
355
357
|
});
|
|
356
358
|
await server.connect(transport);
|
|
357
359
|
await transport.handleRequest(req, res, req.body);
|
package/logs/mcp-server.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
2026-03-31 09:
|
|
2
|
-
2026-03-31 09:
|
|
3
|
-
2026-03-31 09:
|
|
4
|
-
2026-03-31 09:
|
|
5
|
-
2026-03-31 09:
|
|
6
|
-
2026-03-31 09:
|
|
7
|
-
2026-03-31 09:
|
|
8
|
-
2026-03-31 09:
|
|
9
|
-
2026-03-31 09:
|
|
10
|
-
2026-03-31 09:
|
|
1
|
+
2026-03-31 10:09:54 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
2
|
+
2026-03-31 10:09:54 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
3
|
+
2026-03-31 10:09:54 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
4
|
+
2026-03-31 10:09:54 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
|
|
5
|
+
2026-03-31 10:09:54 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
|
|
6
|
+
2026-03-31 10:09:55 INFO: Using environment variables for secrets
|
|
7
|
+
2026-03-31 10:09:55 INFO: Using environment variables for secrets
|
|
8
|
+
2026-03-31 10:09:55 INFO: Using environment variables for secrets
|
|
9
|
+
2026-03-31 10:09:55 INFO: Using environment variables for secrets
|
|
10
|
+
2026-03-31 10:09:55 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.53.
|
|
3
|
+
"version": "0.53.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
|
@@ -854,14 +854,20 @@
|
|
|
854
854
|
"pathPattern": "/search/query",
|
|
855
855
|
"method": "post",
|
|
856
856
|
"toolName": "search-query",
|
|
857
|
-
"
|
|
858
|
-
|
|
857
|
+
"workScopes": [
|
|
858
|
+
"Mail.Read",
|
|
859
|
+
"Calendars.Read",
|
|
860
|
+
"Files.Read.All",
|
|
861
|
+
"People.Read",
|
|
862
|
+
"Sites.Read.All",
|
|
863
|
+
"Chat.Read",
|
|
864
|
+
"ChannelMessage.Read.All"
|
|
865
|
+
]
|
|
859
866
|
},
|
|
860
867
|
{
|
|
861
868
|
"pathPattern": "/me/onlineMeetings",
|
|
862
869
|
"method": "get",
|
|
863
870
|
"toolName": "list-online-meetings",
|
|
864
|
-
"scopes": ["OnlineMeetings.Read"],
|
|
865
871
|
"workScopes": ["OnlineMeetings.Read"],
|
|
866
872
|
"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."
|
|
867
873
|
},
|
|
@@ -869,7 +875,6 @@
|
|
|
869
875
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts",
|
|
870
876
|
"method": "get",
|
|
871
877
|
"toolName": "list-meeting-transcripts",
|
|
872
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
873
878
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
874
879
|
"llmTip": "Lists available transcripts for a meeting. Get the meeting ID first via list-online-meetings."
|
|
875
880
|
},
|
|
@@ -877,7 +882,6 @@
|
|
|
877
882
|
"pathPattern": "/me/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content",
|
|
878
883
|
"method": "get",
|
|
879
884
|
"toolName": "get-meeting-transcript-content",
|
|
880
|
-
"scopes": ["OnlineMeetingTranscript.Read.All"],
|
|
881
885
|
"workScopes": ["OnlineMeetingTranscript.Read.All"],
|
|
882
886
|
"acceptType": "text/vtt",
|
|
883
887
|
"llmTip": "Returns the transcript content in WebVTT format with speaker identification and timestamps."
|