@softeria/ms-365-mcp-server 0.134.2 → 0.134.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.
@@ -204,7 +204,10 @@ class GraphClient {
204
204
  }
205
205
  async graphRequest(endpoint, options = {}) {
206
206
  try {
207
- logger.info(`Calling ${endpoint} with options: ${JSON.stringify(options)}`);
207
+ const { accessToken: _redacted, ...safeOptions } = options;
208
+ logger.info(
209
+ `Calling ${endpoint} with options: ${JSON.stringify(safeOptions)}${_redacted ? " [accessToken=REDACTED]" : ""}`
210
+ );
208
211
  const result = await this.makeRequest(endpoint, options);
209
212
  const outputFormat = options.forceJsonOutput ? "json" : this.outputFormat;
210
213
  return this.formatJsonResponse(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softeria/ms-365-mcp-server",
3
- "version": "0.134.2",
3
+ "version": "0.134.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",