@softeria/ms-365-mcp-server 0.53.2 → 0.53.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/dist/graph-client.js +2 -2
- package/logs/mcp-server.log +10 -10
- package/package.json +1 -1
package/dist/graph-client.js
CHANGED
|
@@ -160,7 +160,7 @@ class GraphClient {
|
|
|
160
160
|
const removeODataProps2 = (obj) => {
|
|
161
161
|
if (typeof obj === "object" && obj !== null) {
|
|
162
162
|
Object.keys(obj).forEach((key) => {
|
|
163
|
-
if (key.startsWith("@odata.")) {
|
|
163
|
+
if (key.startsWith("@odata.") && key !== "@odata.nextLink") {
|
|
164
164
|
delete obj[key];
|
|
165
165
|
} else if (typeof obj[key] === "object") {
|
|
166
166
|
removeODataProps2(obj[key]);
|
|
@@ -189,7 +189,7 @@ class GraphClient {
|
|
|
189
189
|
const removeODataProps = (obj) => {
|
|
190
190
|
if (typeof obj === "object" && obj !== null) {
|
|
191
191
|
Object.keys(obj).forEach((key) => {
|
|
192
|
-
if (key.startsWith("@odata.")) {
|
|
192
|
+
if (key.startsWith("@odata.") && key !== "@odata.nextLink") {
|
|
193
193
|
delete obj[key];
|
|
194
194
|
} else if (typeof obj[key] === "object") {
|
|
195
195
|
removeODataProps(obj[key]);
|
package/logs/mcp-server.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
2026-03-31
|
|
2
|
-
2026-03-31
|
|
3
|
-
2026-03-31
|
|
4
|
-
2026-03-31
|
|
5
|
-
2026-03-31
|
|
6
|
-
2026-03-31
|
|
7
|
-
2026-03-31
|
|
8
|
-
2026-03-31
|
|
9
|
-
2026-03-31
|
|
10
|
-
2026-03-31
|
|
1
|
+
2026-03-31 13:20:11 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
2
|
+
2026-03-31 13:20:11 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
3
|
+
2026-03-31 13:20:11 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
|
|
4
|
+
2026-03-31 13:20:11 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
|
|
5
|
+
2026-03-31 13:20:11 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
|
|
6
|
+
2026-03-31 13:20:13 INFO: Using environment variables for secrets
|
|
7
|
+
2026-03-31 13:20:13 INFO: Using environment variables for secrets
|
|
8
|
+
2026-03-31 13:20:13 INFO: Using environment variables for secrets
|
|
9
|
+
2026-03-31 13:20:13 INFO: Using environment variables for secrets
|
|
10
|
+
2026-03-31 13:20:13 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.3",
|
|
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",
|