@softeria/ms-365-mcp-server 0.87.0 → 0.87.1

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.
Files changed (2) hide show
  1. package/dist/auth.js +2 -1
  2. package/package.json +1 -1
package/dist/auth.js CHANGED
@@ -12,7 +12,8 @@ async function getKeytar() {
12
12
  }
13
13
  if (keytar === null) {
14
14
  try {
15
- keytar = await import("keytar");
15
+ const mod = await import("keytar");
16
+ keytar = mod.default ?? mod;
16
17
  return keytar;
17
18
  } catch (error) {
18
19
  logger.info("keytar not available, using file-based credential storage");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softeria/ms-365-mcp-server",
3
- "version": "0.87.0",
3
+ "version": "0.87.1",
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",