ms365-mcp-server 1.1.21 → 1.1.22

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/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -975,7 +975,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
975
975
  const currentUser = await enhancedMS365Auth.getCurrentUser();
976
976
  const storageInfo = enhancedMS365Auth.getStorageInfo();
977
977
  const tokenInfo = await enhancedMS365Auth.getTokenExpirationInfo();
978
- let statusText = `šŸ“Š Microsoft 365 Authentication Status\n\nšŸ” Authentication: ${isAuthenticated ? 'āœ… Valid' : 'āŒ Not authenticated'}\nšŸ‘¤ Current User: ${currentUser || 'None'}\nšŸ’¾ Storage method: ${storageInfo.method}\nšŸ“ Storage location: ${storageInfo.location}`;
978
+ let statusText = `šŸ“Š Microsoft 365 Authentication Status\n\nšŸ” Authentication: ${isAuthenticated ? 'āœ… Valid' : 'āŒ Not authenticated'}\nšŸ‘¤ Current User: ${currentUser || 'None'}\n`;
979
979
  if (isAuthenticated) {
980
980
  statusText += `\nā° Token expires in: ${tokenInfo.expiresInMinutes} minutes`;
981
981
  if (tokenInfo.needsRefresh) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ms365-mcp-server",
3
- "version": "1.1.21",
3
+ "version": "1.1.22",
4
4
  "description": "Microsoft 365 MCP Server for managing Microsoft 365 email through natural language interactions with full OAuth2 authentication support",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",