ms365-mcp-server 1.1.1 → 1.1.2
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.
- package/dist/index.js +1 -1
- package/dist/utils/ms365-auth-enhanced.js +72 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24,6 +24,7 @@ const DEFAULT_TENANT_ID = "common";
|
|
|
24
24
|
const CONFIG_DIR = path.join(os.homedir(), '.ms365-mcp');
|
|
25
25
|
const CREDENTIALS_FILE = path.join(CONFIG_DIR, 'credentials.json');
|
|
26
26
|
const DEVICE_CODE_FILE = path.join(CONFIG_DIR, 'device-code.json');
|
|
27
|
+
const TOKEN_CACHE_FILE = path.join(CONFIG_DIR, 'msal-cache.json');
|
|
27
28
|
/**
|
|
28
29
|
* Enhanced Microsoft 365 authentication manager with device code flow support
|
|
29
30
|
*/
|
|
@@ -97,13 +98,42 @@ export class EnhancedMS365Auth {
|
|
|
97
98
|
}
|
|
98
99
|
}
|
|
99
100
|
/**
|
|
100
|
-
* Initialize MSAL client based on auth type
|
|
101
|
+
* Initialize MSAL client based on auth type with persistent token cache
|
|
101
102
|
*/
|
|
102
103
|
initializeMsalClient() {
|
|
103
104
|
if (!this.credentials) {
|
|
104
105
|
throw new Error('Credentials not loaded');
|
|
105
106
|
}
|
|
107
|
+
// Return existing client if already initialized with same credentials
|
|
108
|
+
if (this.msalClient) {
|
|
109
|
+
return this.msalClient;
|
|
110
|
+
}
|
|
106
111
|
const isConfidential = this.credentials.clientSecret && this.credentials.authType === 'redirect';
|
|
112
|
+
// Create persistent token cache
|
|
113
|
+
const cachePlugin = {
|
|
114
|
+
beforeCacheAccess: async (cacheContext) => {
|
|
115
|
+
try {
|
|
116
|
+
if (fs.existsSync(TOKEN_CACHE_FILE)) {
|
|
117
|
+
const cacheData = fs.readFileSync(TOKEN_CACHE_FILE, 'utf8');
|
|
118
|
+
cacheContext.tokenCache.deserialize(cacheData);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
catch (error) {
|
|
122
|
+
logger.error('Error loading MSAL token cache:', error);
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
afterCacheAccess: async (cacheContext) => {
|
|
126
|
+
try {
|
|
127
|
+
if (cacheContext.cacheHasChanged) {
|
|
128
|
+
const cacheData = cacheContext.tokenCache.serialize();
|
|
129
|
+
fs.writeFileSync(TOKEN_CACHE_FILE, cacheData);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
catch (error) {
|
|
133
|
+
logger.error('Error saving MSAL token cache:', error);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
};
|
|
107
137
|
if (isConfidential) {
|
|
108
138
|
// Confidential client for redirect-based auth
|
|
109
139
|
const config = {
|
|
@@ -112,6 +142,9 @@ export class EnhancedMS365Auth {
|
|
|
112
142
|
clientSecret: this.credentials.clientSecret,
|
|
113
143
|
authority: `https://login.microsoftonline.com/${this.credentials.tenantId}`
|
|
114
144
|
},
|
|
145
|
+
cache: {
|
|
146
|
+
cachePlugin
|
|
147
|
+
},
|
|
115
148
|
system: {
|
|
116
149
|
loggerOptions: {
|
|
117
150
|
loggerCallback: (level, message, containsPii) => {
|
|
@@ -133,6 +166,9 @@ export class EnhancedMS365Auth {
|
|
|
133
166
|
clientId: this.credentials.clientId,
|
|
134
167
|
authority: `https://login.microsoftonline.com/${this.credentials.tenantId}`
|
|
135
168
|
},
|
|
169
|
+
cache: {
|
|
170
|
+
cachePlugin
|
|
171
|
+
},
|
|
136
172
|
system: {
|
|
137
173
|
loggerOptions: {
|
|
138
174
|
loggerCallback: (level, message, containsPii) => {
|
|
@@ -147,6 +183,7 @@ export class EnhancedMS365Auth {
|
|
|
147
183
|
};
|
|
148
184
|
this.msalClient = new PublicClientApplication(config);
|
|
149
185
|
}
|
|
186
|
+
logger.log('Initialized MSAL client with persistent token cache');
|
|
150
187
|
return this.msalClient;
|
|
151
188
|
}
|
|
152
189
|
/**
|
|
@@ -266,14 +303,14 @@ export class EnhancedMS365Auth {
|
|
|
266
303
|
try {
|
|
267
304
|
const tokenData = {
|
|
268
305
|
accessToken: token.accessToken,
|
|
269
|
-
refreshToken: '',
|
|
306
|
+
refreshToken: '', // MSAL manages refresh tokens internally
|
|
270
307
|
expiresOn: token.expiresOn?.getTime() || 0,
|
|
271
308
|
account: token.account,
|
|
272
309
|
authType: authType
|
|
273
310
|
};
|
|
274
311
|
// Always use a single account key for simplicity
|
|
275
312
|
await credentialStore.setCredentials('ms365-user', tokenData);
|
|
276
|
-
logger.log(
|
|
313
|
+
logger.log(`Saved MS365 access token securely (expires: ${new Date(tokenData.expiresOn).toLocaleString()})`);
|
|
277
314
|
}
|
|
278
315
|
catch (error) {
|
|
279
316
|
logger.error('Error saving token:', error);
|
|
@@ -331,13 +368,19 @@ export class EnhancedMS365Auth {
|
|
|
331
368
|
* Get authenticated Microsoft Graph client
|
|
332
369
|
*/
|
|
333
370
|
async getGraphClient() {
|
|
334
|
-
|
|
371
|
+
let storedToken = await this.loadStoredToken();
|
|
335
372
|
if (!storedToken) {
|
|
336
373
|
throw new Error('No stored token found. Please authenticate first.');
|
|
337
374
|
}
|
|
338
375
|
// Check if token is expired
|
|
339
376
|
if (storedToken.expiresOn < Date.now()) {
|
|
377
|
+
logger.log('Access token expired, refreshing...');
|
|
340
378
|
await this.refreshToken();
|
|
379
|
+
// Reload the token after refresh
|
|
380
|
+
storedToken = await this.loadStoredToken();
|
|
381
|
+
if (!storedToken) {
|
|
382
|
+
throw new Error('Failed to refresh token. Please re-authenticate.');
|
|
383
|
+
}
|
|
341
384
|
}
|
|
342
385
|
const client = Client.init({
|
|
343
386
|
authProvider: (done) => {
|
|
@@ -399,9 +442,23 @@ export class EnhancedMS365Auth {
|
|
|
399
442
|
}
|
|
400
443
|
const msalClient = this.initializeMsalClient();
|
|
401
444
|
try {
|
|
445
|
+
// Try to get all accounts from MSAL cache first (only available on PublicClientApplication)
|
|
446
|
+
let accountToUse = storedToken.account;
|
|
447
|
+
if (msalClient instanceof PublicClientApplication) {
|
|
448
|
+
const accounts = await msalClient.getAllAccounts();
|
|
449
|
+
// If we have accounts in MSAL cache, use the first one that matches
|
|
450
|
+
if (accounts.length > 0) {
|
|
451
|
+
const matchingAccount = accounts.find((acc) => acc.username === storedToken.account?.username ||
|
|
452
|
+
acc.homeAccountId === storedToken.account?.homeAccountId);
|
|
453
|
+
if (matchingAccount) {
|
|
454
|
+
accountToUse = matchingAccount;
|
|
455
|
+
logger.log('Using account from MSAL cache for token refresh');
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|
|
402
459
|
const tokenResponse = await msalClient.acquireTokenSilent({
|
|
403
460
|
scopes: SCOPES,
|
|
404
|
-
account:
|
|
461
|
+
account: accountToUse
|
|
405
462
|
});
|
|
406
463
|
if (!tokenResponse) {
|
|
407
464
|
throw new Error('Failed to refresh token - please re-authenticate using: authenticate_with_device_code');
|
|
@@ -417,6 +474,9 @@ export class EnhancedMS365Auth {
|
|
|
417
474
|
else if (error.errorCode === 'consent_required') {
|
|
418
475
|
throw new Error('Additional consent required. Please re-authenticate using the "authenticate_with_device_code" tool.');
|
|
419
476
|
}
|
|
477
|
+
else if (error.errorCode === 'no_account_in_silent_request') {
|
|
478
|
+
throw new Error('No account found in token cache. Please re-authenticate using the "authenticate_with_device_code" tool.');
|
|
479
|
+
}
|
|
420
480
|
else {
|
|
421
481
|
logger.error('Token refresh failed:', error);
|
|
422
482
|
throw new Error(`Token refresh failed: ${error.message}. Please re-authenticate using the "authenticate_with_device_code" tool.`);
|
|
@@ -457,6 +517,13 @@ export class EnhancedMS365Auth {
|
|
|
457
517
|
try {
|
|
458
518
|
await credentialStore.deleteCredentials('ms365-user');
|
|
459
519
|
await this.clearDeviceCodeState();
|
|
520
|
+
// Clear MSAL token cache
|
|
521
|
+
if (fs.existsSync(TOKEN_CACHE_FILE)) {
|
|
522
|
+
fs.unlinkSync(TOKEN_CACHE_FILE);
|
|
523
|
+
logger.log('Cleared MSAL token cache');
|
|
524
|
+
}
|
|
525
|
+
// Reset MSAL client instance to force re-initialization
|
|
526
|
+
this.msalClient = null;
|
|
460
527
|
logger.log('Cleared stored authentication tokens');
|
|
461
528
|
}
|
|
462
529
|
catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ms365-mcp-server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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",
|