@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.
@@ -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]);
@@ -1,10 +1,10 @@
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
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.2",
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",