@softeria/ms-365-mcp-server 0.28.3 → 0.29.0

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.
@@ -251,7 +251,10 @@ function registerGraphTools(server, graphClient, readOnly = false, enabledToolsP
251
251
  paramSchema,
252
252
  {
253
253
  title: tool.alias,
254
- readOnlyHint: tool.method.toUpperCase() === "GET"
254
+ readOnlyHint: tool.method.toUpperCase() === "GET",
255
+ destructiveHint: ["POST", "PATCH", "DELETE"].includes(tool.method.toUpperCase()),
256
+ openWorldHint: true
257
+ // All tools call Microsoft Graph API
255
258
  },
256
259
  async (params) => executeGraphTool(tool, endpointConfig, graphClient, params)
257
260
  );
@@ -295,7 +298,9 @@ function registerDiscoveryTools(server, graphClient, readOnly = false, orgMode =
295
298
  },
296
299
  {
297
300
  title: "search-tools",
298
- readOnlyHint: true
301
+ readOnlyHint: true,
302
+ openWorldHint: true
303
+ // Searches Microsoft Graph API tools
299
304
  },
300
305
  async ({ query, category, limit = 20 }) => {
301
306
  const maxLimit = Math.min(limit, 50);
@@ -348,7 +353,11 @@ function registerDiscoveryTools(server, graphClient, readOnly = false, orgMode =
348
353
  },
349
354
  {
350
355
  title: "execute-tool",
351
- readOnlyHint: false
356
+ readOnlyHint: false,
357
+ destructiveHint: true,
358
+ // Can execute any tool, including write operations
359
+ openWorldHint: true
360
+ // Executes against Microsoft Graph API
352
361
  },
353
362
  async ({ tool_name, parameters = {} }) => {
354
363
  const toolData = toolsRegistry.get(tool_name);
@@ -1,5 +1,5 @@
1
- 2025-12-23 08:30:22 INFO: Using environment variables for secrets
2
- 2025-12-23 08:30:22 INFO: Using environment variables for secrets
3
- 2025-12-23 08:30:22 INFO: Using environment variables for secrets
4
- 2025-12-23 08:30:22 INFO: Using environment variables for secrets
5
- 2025-12-23 08:30:22 INFO: Using environment variables for secrets
1
+ 2025-12-30 13:54:31 INFO: Using environment variables for secrets
2
+ 2025-12-30 13:54:31 INFO: Using environment variables for secrets
3
+ 2025-12-30 13:54:31 INFO: Using environment variables for secrets
4
+ 2025-12-30 13:54:31 INFO: Using environment variables for secrets
5
+ 2025-12-30 13:54:31 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.28.3",
3
+ "version": "0.29.0",
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",