@softeria/ms-365-mcp-server 0.53.1 → 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]);
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);
@@ -1,10 +1,10 @@
1
- 2026-03-31 09:24:10 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
2
- 2026-03-31 09:24:10 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
3
- 2026-03-31 09:24:10 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me
4
- 2026-03-31 09:24:10 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/messages
5
- 2026-03-31 09:24:10 INFO: [GRAPH CLIENT] Final URL being sent to Microsoft: https://graph.microsoft.com/v1.0/me/calendar
6
- 2026-03-31 09:24:11 INFO: Using environment variables for secrets
7
- 2026-03-31 09:24:11 INFO: Using environment variables for secrets
8
- 2026-03-31 09:24:11 INFO: Using environment variables for secrets
9
- 2026-03-31 09:24:11 INFO: Using environment variables for secrets
10
- 2026-03-31 09:24:11 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.1",
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",