import React, { memo, useCallback, useState } from 'react'; import { SettingsIcon } from 'lucide-react'; import { Constants } from 'librechat-data-provider'; import { useUpdateUserPluginsMutation } from 'librechat-data-provider/react-query'; import type { TUpdateUserPlugins, TPlugin } from 'librechat-data-provider'; import MCPConfigDialog, { type ConfigFieldDetail } from '~/components/ui/MCPConfigDialog'; import { useToastContext, useBadgeRowContext } from '~/Providers'; import MultiSelect from '~/components/ui/MultiSelect'; import { MCPIcon } from '~/components/svg'; import { useLocalize } from '~/hooks'; const getBaseMCPPluginKey = (fullPluginKey: string): string => { const parts = fullPluginKey.split(Constants.mcp_delimiter); return Constants.mcp_prefix + parts[parts.length - 1]; }; function MCPSelect() { const localize = useLocalize(); const { showToast } = useToastContext(); const { mcpSelect, startupConfig } = useBadgeRowContext(); const { mcpValues, setMCPValues, mcpServerNames, mcpToolDetails, isPinned } = mcpSelect; const [isConfigModalOpen, setIsConfigModalOpen] = useState(false); const [selectedToolForConfig, setSelectedToolForConfig] = useState(null); const updateUserPluginsMutation = useUpdateUserPluginsMutation({ onSuccess: () => { setIsConfigModalOpen(false); showToast({ message: localize('com_nav_mcp_vars_updated'), status: 'success' }); }, onError: (error: unknown) => { console.error('Error updating MCP auth:', error); showToast({ message: localize('com_nav_mcp_vars_update_error'), status: 'error', }); }, }); const renderSelectedValues = useCallback( (values: string[], placeholder?: string) => { if (values.length === 0) { return placeholder || localize('com_ui_select') + '...'; } if (values.length === 1) { return values[0]; } return localize('com_ui_x_selected', { 0: values.length }); }, [localize], ); const handleConfigSave = useCallback( (targetName: string, authData: Record) => { if (selectedToolForConfig && selectedToolForConfig.name === targetName) { const basePluginKey = getBaseMCPPluginKey(selectedToolForConfig.pluginKey); const payload: TUpdateUserPlugins = { pluginKey: basePluginKey, action: 'install', auth: authData, }; updateUserPluginsMutation.mutate(payload); } }, [selectedToolForConfig, updateUserPluginsMutation], ); const handleConfigRevoke = useCallback( (targetName: string) => { if (selectedToolForConfig && selectedToolForConfig.name === targetName) { const basePluginKey = getBaseMCPPluginKey(selectedToolForConfig.pluginKey); const payload: TUpdateUserPlugins = { pluginKey: basePluginKey, action: 'uninstall', auth: {}, }; updateUserPluginsMutation.mutate(payload); } }, [selectedToolForConfig, updateUserPluginsMutation], ); const renderItemContent = useCallback( (serverName: string, defaultContent: React.ReactNode) => { const tool = mcpToolDetails?.find((t) => t.name === serverName); const hasAuthConfig = tool?.authConfig && tool.authConfig.length > 0; // Common wrapper for the main content (check mark + text) // Ensures Check & Text are adjacent and the group takes available space. const mainContentWrapper = (
{defaultContent}
); if (tool && hasAuthConfig) { return (
{mainContentWrapper}
); } // For items without a settings icon, return the consistently wrapped main content. return mainContentWrapper; }, [mcpToolDetails, setSelectedToolForConfig, setIsConfigModalOpen], ); // Don't render if no servers are selected and not pinned if ((!mcpValues || mcpValues.length === 0) && !isPinned) { return null; } if (!mcpToolDetails || mcpToolDetails.length === 0) { return null; } const placeholderText = startupConfig?.interface?.mcpServers?.placeholder || localize('com_ui_mcp_servers'); return ( <> } selectItemsClassName="border border-blue-600/50 bg-blue-500/10 hover:bg-blue-700/10" selectClassName="group relative inline-flex items-center justify-center md:justify-start gap-1.5 rounded-full border border-border-medium text-sm font-medium transition-all md:w-full size-9 p-2 md:p-3 bg-transparent shadow-sm hover:bg-surface-hover hover:shadow-md active:shadow-inner" /> {selectedToolForConfig && ( { const schema: Record = {}; if (selectedToolForConfig?.authConfig) { selectedToolForConfig.authConfig.forEach((field) => { schema[field.authField] = { title: field.label, description: field.description, }; }); } return schema; })()} initialValues={(() => { const initial: Record = {}; // Note: Actual initial values might need to be fetched if they are stored user-specifically if (selectedToolForConfig?.authConfig) { selectedToolForConfig.authConfig.forEach((field) => { initial[field.authField] = ''; // Or fetched value }); } return initial; })()} onSave={(authData) => { if (selectedToolForConfig) { handleConfigSave(selectedToolForConfig.name, authData); } }} onRevoke={() => { if (selectedToolForConfig) { handleConfigRevoke(selectedToolForConfig.name); } }} isSubmitting={updateUserPluginsMutation.isLoading} /> )} ); } export default memo(MCPSelect);