mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
- **Real-Time Connection Status**: New backend APIs and React Query hooks provide live MCP server connection monitoring with automatic UI updates - **OAuth Flow Components**: Complete MCPConfigDialog, ServerInitializationSection, and CustomUserVarsSection with OAuth URL handling and polling-based completion - **Enhanced Server Selection**: MCPSelect component with connection-aware filtering, visual status indicators, and better credential management UX (still needs a lot of refinement since there is bloat/unused vars and functions leftover from the ideation phase on how to approach OAuth and connection statuses)
84 lines
2.6 KiB
JavaScript
84 lines
2.6 KiB
JavaScript
const { logger } = require('@librechat/data-schemas');
|
|
const { CacheKeys } = require('librechat-data-provider');
|
|
const { findToken, updateToken, createToken, deleteTokens } = require('~/models');
|
|
const { getMCPManager, getFlowStateManager } = require('~/config');
|
|
const { getCachedTools, setCachedTools } = require('./Config');
|
|
const { getLogStores } = require('~/cache');
|
|
|
|
/**
|
|
* Initialize MCP servers
|
|
* @param {import('express').Application} app - Express app instance
|
|
*/
|
|
async function initializeMCPs(app) {
|
|
// TEMPORARY: Reset all OAuth tokens for fresh testing
|
|
try {
|
|
logger.info('[MCP] Resetting all OAuth tokens for fresh testing...');
|
|
await deleteTokens({});
|
|
logger.info('[MCP] All OAuth tokens reset successfully');
|
|
} catch (error) {
|
|
logger.error('[MCP] Error resetting OAuth tokens:', error);
|
|
}
|
|
|
|
const mcpServers = app.locals.mcpConfig;
|
|
if (!mcpServers) {
|
|
return;
|
|
}
|
|
|
|
// Filter out servers with startup: false
|
|
const filteredServers = {};
|
|
for (const [name, config] of Object.entries(mcpServers)) {
|
|
if (config.startup === false) {
|
|
logger.info(`Skipping MCP server '${name}' due to startup: false`);
|
|
continue;
|
|
}
|
|
filteredServers[name] = config;
|
|
}
|
|
|
|
if (Object.keys(filteredServers).length === 0) {
|
|
logger.info('[MCP] No MCP servers to initialize (all skipped or none configured)');
|
|
return;
|
|
}
|
|
|
|
logger.info('Initializing MCP servers...');
|
|
const mcpManager = getMCPManager();
|
|
const flowsCache = getLogStores(CacheKeys.FLOWS);
|
|
const flowManager = flowsCache ? getFlowStateManager(flowsCache) : null;
|
|
|
|
try {
|
|
const oauthRequirements = await mcpManager.initializeMCPs({
|
|
mcpServers: filteredServers,
|
|
flowManager,
|
|
tokenMethods: {
|
|
findToken,
|
|
updateToken,
|
|
createToken,
|
|
deleteTokens,
|
|
},
|
|
});
|
|
|
|
delete app.locals.mcpConfig;
|
|
const availableTools = await getCachedTools();
|
|
|
|
if (!availableTools) {
|
|
logger.warn('No available tools found in cache during MCP initialization');
|
|
return;
|
|
}
|
|
|
|
const toolsCopy = { ...availableTools };
|
|
await mcpManager.mapAvailableTools(toolsCopy, flowManager);
|
|
await setCachedTools(toolsCopy, { isGlobal: true });
|
|
|
|
const cache = getLogStores(CacheKeys.CONFIG_STORE);
|
|
await cache.delete(CacheKeys.TOOLS);
|
|
logger.debug('Cleared tools array cache after MCP initialization');
|
|
|
|
logger.info('MCP servers initialized successfully');
|
|
|
|
// Store OAuth requirement information in app locals for client access
|
|
app.locals.mcpOAuthRequirements = oauthRequirements;
|
|
} catch (error) {
|
|
logger.error('Failed to initialize MCP servers:', error);
|
|
}
|
|
}
|
|
|
|
module.exports = initializeMCPs;
|