2025-07-28 09:25:34 -07:00
|
|
|
import { useCallback, useState, useMemo, useRef, useEffect } from 'react';
|
📦 feat: Move Shared Components to `@librechat/client` (#8685)
* feat: init @librechat/client
* feat: Add common types and interfaces for accessibility, agents, artifacts, assistants, and tools
* feat: Add jotai as a peer dependency
* fix build client package
* feat: cleanup unused types from common/index.ts
- Remove 104 unused type exports from packages/client/src/common/index.ts
- Keep only 7 actually used exports (93% reduction)
- Add cleanup script with enhanced import pattern detection
- Support both named imports and namespace imports (* as t)
- Create automatic backups and comprehensive documentation
- Maintain type safety with build verification
- No breaking changes to existing code
Kept exports:
- TShowToast, Option, OptionWithIcon, DropdownValueSetter
- MentionOption, NotificationSeverity, MenuItemProps
Scripts: cleanup-common-types-safe.js, README-CLEANUP.md
* fix: cleanup
* fix: package; refactor: tsconfig
* feat: add back `recoil`
* fix: move dependencies to peerDependencies in client package
* feat: add @librechat/client as a dependency in package.json and package-lock.json
* feat: update client package configuration and dependencies
- Added new dependencies for Rollup plugins and updated existing ones in package.json and package-lock.json.
- Introduced a new Rollup configuration file for building the client package.
- Refactored build scripts to include a dedicated build command for the client.
- Updated TypeScript configuration for improved module resolution and type declaration output.
- Integrated a Toast component from the client package into the main App component.
* feat: enhance Rollup configuration for client package
- Updated terser plugin settings to preserve directives like 'use client'.
- Added custom warning handler to ignore "use client" directive warnings during the build process.
* chore: rename package/client build script command
* feat: update client package dependencies and Rollup configuration
- Added rollup-plugin-postcss to package.json and updated package-lock.json.
- Enhanced Rollup configuration to include postcss plugin for CSS handling.
- Updated index.ts to export all components from the components directory for better modularity.
* feat: add client package directory to update configuration
- Included the 'client' package directory in the update.js configuration to ensure it is recognized during updates.
* feat: export Toast component in client package
- Added export for the Toast component in index.ts to enhance modularity and accessibility of components.
* feat: /client transition to @librechat/client
* chore: fixed formatting issues
* fix: update peer dependencies in @librechat/client to prevent bundling them
* fix: correct useSprings implementation in SplitText component
* fix: circular dependencies in DataTable
* fix: add remaining peer dependencies and match actual versions previously used in `client/package.json`
* fix: correct frontend:ci script to include client package build
* chore: enhance unused package detection for @librechat/client and improve dependency extraction
* fix: add missing peer dependency for @radix-ui/react-collapsible
* chore: include "packages/client" in unused i18next keys detection
* test: update AgentFooter tests to use document.querySelector for spinner checks
test: mock window.matchMedia in setupTests.js for consistent test environment
* feat: add react-hook-form dependency and update FormInput component to use its types
* chore: linting
* refactor: remove unused defaultSelectedValues prop from MCPSelect and MultiSelect components
* chore: linting
* feat: update GitHub Actions workflow to publish @librechat/client
* chore: update GitHub Actions workflow to install and build data-provider and client dependencies
* chore: add missing @testing-library/react dependency to client package
* chore: update tsconfig.json to exclude additional test files
* chore: fix build issues, resolve latest LC changes
* chore: move MCP components outside of `~/components/ui`
* feat: implement dynamic theme system with environment variable support and Tailwind CSS integration
* chore: remove unnecessary logging of sttExternal and ttsExternal in Speech component
* chore: squashed cleanup commits
chore: move @tanstack/react-virtual to dependencies and remove recoil from package.json
chore: move dependencies to peerDependencies in package.json
feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration
feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration
refactor: reorganize exports in index.ts for improved clarity
refactor: remove unused types and interfaces from common files
refactor: update peer dependencies and improve component typings
- Removed duplicate peer dependencies from package.json and organized them.
- Updated rollup.config.js to disable TypeScript checking during the build process.
- Modified AnimatedTabs component to use React.ReactNode for label and content types, and added TypeScript workarounds for compatibility.
- Enhanced Label and Separator components to accept an optional className prop and improved prop spreading.
- Updated Slider component to include an optional className prop and refined prop handling for better type safety.
refactor: clean up client workflow and update package dependencies
refactor: update package dependencies and improve PostCSS and Rollup configurations
chore: bump version to 0.1.2 in package.json
chore: bump client version to 0.1.2 in package-lock.json
chore: bump client version to 0.1.3 and update dependencies
chore: bump client version to 0.1.4 and update @react-spring dependencies
chore: update package version to 0.1.5 and adjust peer dependencies
- Bump version in package.json from 0.1.4 to 0.1.5.
- Update peer dependency for @tanstack/react-query to allow version 5.0.0.
- Add @tanstack/react-table and @tanstack/react-virtual as dependencies.
- Update various dependencies to their latest compatible versions.
- Simplify postcss.config.js by removing unnecessary options.
- Clean up rollup.config.js by removing ignored PostCSS warnings.
- Update CheckboxButton component to cast icon as React JSX element.
- Adjust Combobox component's class names for better styling.
- Change DropdownPopup component to use React's namespace import.
- Modify InputOTP component to use 'any' type for OTPInputContext.
- Ensure displayLabel and value in ModelParameters are converted to strings.
- Update MultiSearch component's placeholder to ensure it's a string.
- Cast selectIcon in MultiSelect as React JSX element for consistency.
- Update OGDialogTemplate to cast selectText as React JSX element.
- Initialize animationRef in PixelCard with undefined for clarity.
- Add TypeScript ignore comments in Select and SelectDropDown components for Radix UI type conflicts.
- Ensure title in SelectDropDown is a string and adjust rendering of options.
- Update useLocalize hook to cast options as any for compatibility.
refactor: code structure; chore: translations cleanup
chore: remove unused imports and clean up code in NewChat component
refactor: enhance Menu component to support custom render functions for menu items
style: update itemClassName in ToolsDropdown for improved UI consistency
fix: merge conflicts
chore: update @radix-ui/react-accordion to version 1.2.11
* refactor: remove unnecessary TypeScript type assertions in AnimatedTabs, Label, Separator, and Slider components
* feat: enhance theme system with localStorage persistence and new theme atoms
* chore: bump version of @librechat/client to 0.1.7
* chore: fix ci/cd warnings/errors related to linting and unused localization keys
* chore: update dependencies for class-variance-authority, clsx, and match-sorter
* chore: bump @librechat/client to v0.1.8
* feat: add utility colors for theme customization and remove unused tailwindConfig
* v0.1.9
---------
Co-authored-by: Marco Beretta <81851188+berry-13@users.noreply.github.com>
2025-07-27 12:19:01 -04:00
|
|
|
import { useToastContext } from '@librechat/client';
|
2025-07-25 11:51:42 -07:00
|
|
|
import { useQueryClient } from '@tanstack/react-query';
|
|
|
|
|
import { Constants, QueryKeys } from 'librechat-data-provider';
|
2025-07-28 09:25:34 -07:00
|
|
|
import {
|
|
|
|
|
useUpdateUserPluginsMutation,
|
|
|
|
|
useReinitializeMCPServerMutation,
|
|
|
|
|
useCancelMCPOAuthMutation,
|
|
|
|
|
} from 'librechat-data-provider/react-query';
|
|
|
|
|
import { useMCPConnectionStatusQuery } from '~/data-provider/Tools/queries';
|
2025-07-25 11:51:42 -07:00
|
|
|
import type { TUpdateUserPlugins, TPlugin } from 'librechat-data-provider';
|
📦 feat: Move Shared Components to `@librechat/client` (#8685)
* feat: init @librechat/client
* feat: Add common types and interfaces for accessibility, agents, artifacts, assistants, and tools
* feat: Add jotai as a peer dependency
* fix build client package
* feat: cleanup unused types from common/index.ts
- Remove 104 unused type exports from packages/client/src/common/index.ts
- Keep only 7 actually used exports (93% reduction)
- Add cleanup script with enhanced import pattern detection
- Support both named imports and namespace imports (* as t)
- Create automatic backups and comprehensive documentation
- Maintain type safety with build verification
- No breaking changes to existing code
Kept exports:
- TShowToast, Option, OptionWithIcon, DropdownValueSetter
- MentionOption, NotificationSeverity, MenuItemProps
Scripts: cleanup-common-types-safe.js, README-CLEANUP.md
* fix: cleanup
* fix: package; refactor: tsconfig
* feat: add back `recoil`
* fix: move dependencies to peerDependencies in client package
* feat: add @librechat/client as a dependency in package.json and package-lock.json
* feat: update client package configuration and dependencies
- Added new dependencies for Rollup plugins and updated existing ones in package.json and package-lock.json.
- Introduced a new Rollup configuration file for building the client package.
- Refactored build scripts to include a dedicated build command for the client.
- Updated TypeScript configuration for improved module resolution and type declaration output.
- Integrated a Toast component from the client package into the main App component.
* feat: enhance Rollup configuration for client package
- Updated terser plugin settings to preserve directives like 'use client'.
- Added custom warning handler to ignore "use client" directive warnings during the build process.
* chore: rename package/client build script command
* feat: update client package dependencies and Rollup configuration
- Added rollup-plugin-postcss to package.json and updated package-lock.json.
- Enhanced Rollup configuration to include postcss plugin for CSS handling.
- Updated index.ts to export all components from the components directory for better modularity.
* feat: add client package directory to update configuration
- Included the 'client' package directory in the update.js configuration to ensure it is recognized during updates.
* feat: export Toast component in client package
- Added export for the Toast component in index.ts to enhance modularity and accessibility of components.
* feat: /client transition to @librechat/client
* chore: fixed formatting issues
* fix: update peer dependencies in @librechat/client to prevent bundling them
* fix: correct useSprings implementation in SplitText component
* fix: circular dependencies in DataTable
* fix: add remaining peer dependencies and match actual versions previously used in `client/package.json`
* fix: correct frontend:ci script to include client package build
* chore: enhance unused package detection for @librechat/client and improve dependency extraction
* fix: add missing peer dependency for @radix-ui/react-collapsible
* chore: include "packages/client" in unused i18next keys detection
* test: update AgentFooter tests to use document.querySelector for spinner checks
test: mock window.matchMedia in setupTests.js for consistent test environment
* feat: add react-hook-form dependency and update FormInput component to use its types
* chore: linting
* refactor: remove unused defaultSelectedValues prop from MCPSelect and MultiSelect components
* chore: linting
* feat: update GitHub Actions workflow to publish @librechat/client
* chore: update GitHub Actions workflow to install and build data-provider and client dependencies
* chore: add missing @testing-library/react dependency to client package
* chore: update tsconfig.json to exclude additional test files
* chore: fix build issues, resolve latest LC changes
* chore: move MCP components outside of `~/components/ui`
* feat: implement dynamic theme system with environment variable support and Tailwind CSS integration
* chore: remove unnecessary logging of sttExternal and ttsExternal in Speech component
* chore: squashed cleanup commits
chore: move @tanstack/react-virtual to dependencies and remove recoil from package.json
chore: move dependencies to peerDependencies in package.json
feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration
feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration
refactor: reorganize exports in index.ts for improved clarity
refactor: remove unused types and interfaces from common files
refactor: update peer dependencies and improve component typings
- Removed duplicate peer dependencies from package.json and organized them.
- Updated rollup.config.js to disable TypeScript checking during the build process.
- Modified AnimatedTabs component to use React.ReactNode for label and content types, and added TypeScript workarounds for compatibility.
- Enhanced Label and Separator components to accept an optional className prop and improved prop spreading.
- Updated Slider component to include an optional className prop and refined prop handling for better type safety.
refactor: clean up client workflow and update package dependencies
refactor: update package dependencies and improve PostCSS and Rollup configurations
chore: bump version to 0.1.2 in package.json
chore: bump client version to 0.1.2 in package-lock.json
chore: bump client version to 0.1.3 and update dependencies
chore: bump client version to 0.1.4 and update @react-spring dependencies
chore: update package version to 0.1.5 and adjust peer dependencies
- Bump version in package.json from 0.1.4 to 0.1.5.
- Update peer dependency for @tanstack/react-query to allow version 5.0.0.
- Add @tanstack/react-table and @tanstack/react-virtual as dependencies.
- Update various dependencies to their latest compatible versions.
- Simplify postcss.config.js by removing unnecessary options.
- Clean up rollup.config.js by removing ignored PostCSS warnings.
- Update CheckboxButton component to cast icon as React JSX element.
- Adjust Combobox component's class names for better styling.
- Change DropdownPopup component to use React's namespace import.
- Modify InputOTP component to use 'any' type for OTPInputContext.
- Ensure displayLabel and value in ModelParameters are converted to strings.
- Update MultiSearch component's placeholder to ensure it's a string.
- Cast selectIcon in MultiSelect as React JSX element for consistency.
- Update OGDialogTemplate to cast selectText as React JSX element.
- Initialize animationRef in PixelCard with undefined for clarity.
- Add TypeScript ignore comments in Select and SelectDropDown components for Radix UI type conflicts.
- Ensure title in SelectDropDown is a string and adjust rendering of options.
- Update useLocalize hook to cast options as any for compatibility.
refactor: code structure; chore: translations cleanup
chore: remove unused imports and clean up code in NewChat component
refactor: enhance Menu component to support custom render functions for menu items
style: update itemClassName in ToolsDropdown for improved UI consistency
fix: merge conflicts
chore: update @radix-ui/react-accordion to version 1.2.11
* refactor: remove unnecessary TypeScript type assertions in AnimatedTabs, Label, Separator, and Slider components
* feat: enhance theme system with localStorage persistence and new theme atoms
* chore: bump version of @librechat/client to 0.1.7
* chore: fix ci/cd warnings/errors related to linting and unused localization keys
* chore: update dependencies for class-variance-authority, clsx, and match-sorter
* chore: bump @librechat/client to v0.1.8
* feat: add utility colors for theme customization and remove unused tailwindConfig
* v0.1.9
---------
Co-authored-by: Marco Beretta <81851188+berry-13@users.noreply.github.com>
2025-07-27 12:19:01 -04:00
|
|
|
import type { ConfigFieldDetail } from '~/components/MCP/MCPConfigDialog';
|
2025-07-28 09:25:34 -07:00
|
|
|
import { useLocalize } from '~/hooks';
|
📦 feat: Move Shared Components to `@librechat/client` (#8685)
* feat: init @librechat/client
* feat: Add common types and interfaces for accessibility, agents, artifacts, assistants, and tools
* feat: Add jotai as a peer dependency
* fix build client package
* feat: cleanup unused types from common/index.ts
- Remove 104 unused type exports from packages/client/src/common/index.ts
- Keep only 7 actually used exports (93% reduction)
- Add cleanup script with enhanced import pattern detection
- Support both named imports and namespace imports (* as t)
- Create automatic backups and comprehensive documentation
- Maintain type safety with build verification
- No breaking changes to existing code
Kept exports:
- TShowToast, Option, OptionWithIcon, DropdownValueSetter
- MentionOption, NotificationSeverity, MenuItemProps
Scripts: cleanup-common-types-safe.js, README-CLEANUP.md
* fix: cleanup
* fix: package; refactor: tsconfig
* feat: add back `recoil`
* fix: move dependencies to peerDependencies in client package
* feat: add @librechat/client as a dependency in package.json and package-lock.json
* feat: update client package configuration and dependencies
- Added new dependencies for Rollup plugins and updated existing ones in package.json and package-lock.json.
- Introduced a new Rollup configuration file for building the client package.
- Refactored build scripts to include a dedicated build command for the client.
- Updated TypeScript configuration for improved module resolution and type declaration output.
- Integrated a Toast component from the client package into the main App component.
* feat: enhance Rollup configuration for client package
- Updated terser plugin settings to preserve directives like 'use client'.
- Added custom warning handler to ignore "use client" directive warnings during the build process.
* chore: rename package/client build script command
* feat: update client package dependencies and Rollup configuration
- Added rollup-plugin-postcss to package.json and updated package-lock.json.
- Enhanced Rollup configuration to include postcss plugin for CSS handling.
- Updated index.ts to export all components from the components directory for better modularity.
* feat: add client package directory to update configuration
- Included the 'client' package directory in the update.js configuration to ensure it is recognized during updates.
* feat: export Toast component in client package
- Added export for the Toast component in index.ts to enhance modularity and accessibility of components.
* feat: /client transition to @librechat/client
* chore: fixed formatting issues
* fix: update peer dependencies in @librechat/client to prevent bundling them
* fix: correct useSprings implementation in SplitText component
* fix: circular dependencies in DataTable
* fix: add remaining peer dependencies and match actual versions previously used in `client/package.json`
* fix: correct frontend:ci script to include client package build
* chore: enhance unused package detection for @librechat/client and improve dependency extraction
* fix: add missing peer dependency for @radix-ui/react-collapsible
* chore: include "packages/client" in unused i18next keys detection
* test: update AgentFooter tests to use document.querySelector for spinner checks
test: mock window.matchMedia in setupTests.js for consistent test environment
* feat: add react-hook-form dependency and update FormInput component to use its types
* chore: linting
* refactor: remove unused defaultSelectedValues prop from MCPSelect and MultiSelect components
* chore: linting
* feat: update GitHub Actions workflow to publish @librechat/client
* chore: update GitHub Actions workflow to install and build data-provider and client dependencies
* chore: add missing @testing-library/react dependency to client package
* chore: update tsconfig.json to exclude additional test files
* chore: fix build issues, resolve latest LC changes
* chore: move MCP components outside of `~/components/ui`
* feat: implement dynamic theme system with environment variable support and Tailwind CSS integration
* chore: remove unnecessary logging of sttExternal and ttsExternal in Speech component
* chore: squashed cleanup commits
chore: move @tanstack/react-virtual to dependencies and remove recoil from package.json
chore: move dependencies to peerDependencies in package.json
feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration
feat: update package.json and rollup.config.js to include jotai and enhance bundling configuration
refactor: reorganize exports in index.ts for improved clarity
refactor: remove unused types and interfaces from common files
refactor: update peer dependencies and improve component typings
- Removed duplicate peer dependencies from package.json and organized them.
- Updated rollup.config.js to disable TypeScript checking during the build process.
- Modified AnimatedTabs component to use React.ReactNode for label and content types, and added TypeScript workarounds for compatibility.
- Enhanced Label and Separator components to accept an optional className prop and improved prop spreading.
- Updated Slider component to include an optional className prop and refined prop handling for better type safety.
refactor: clean up client workflow and update package dependencies
refactor: update package dependencies and improve PostCSS and Rollup configurations
chore: bump version to 0.1.2 in package.json
chore: bump client version to 0.1.2 in package-lock.json
chore: bump client version to 0.1.3 and update dependencies
chore: bump client version to 0.1.4 and update @react-spring dependencies
chore: update package version to 0.1.5 and adjust peer dependencies
- Bump version in package.json from 0.1.4 to 0.1.5.
- Update peer dependency for @tanstack/react-query to allow version 5.0.0.
- Add @tanstack/react-table and @tanstack/react-virtual as dependencies.
- Update various dependencies to their latest compatible versions.
- Simplify postcss.config.js by removing unnecessary options.
- Clean up rollup.config.js by removing ignored PostCSS warnings.
- Update CheckboxButton component to cast icon as React JSX element.
- Adjust Combobox component's class names for better styling.
- Change DropdownPopup component to use React's namespace import.
- Modify InputOTP component to use 'any' type for OTPInputContext.
- Ensure displayLabel and value in ModelParameters are converted to strings.
- Update MultiSearch component's placeholder to ensure it's a string.
- Cast selectIcon in MultiSelect as React JSX element for consistency.
- Update OGDialogTemplate to cast selectText as React JSX element.
- Initialize animationRef in PixelCard with undefined for clarity.
- Add TypeScript ignore comments in Select and SelectDropDown components for Radix UI type conflicts.
- Ensure title in SelectDropDown is a string and adjust rendering of options.
- Update useLocalize hook to cast options as any for compatibility.
refactor: code structure; chore: translations cleanup
chore: remove unused imports and clean up code in NewChat component
refactor: enhance Menu component to support custom render functions for menu items
style: update itemClassName in ToolsDropdown for improved UI consistency
fix: merge conflicts
chore: update @radix-ui/react-accordion to version 1.2.11
* refactor: remove unnecessary TypeScript type assertions in AnimatedTabs, Label, Separator, and Slider components
* feat: enhance theme system with localStorage persistence and new theme atoms
* chore: bump version of @librechat/client to 0.1.7
* chore: fix ci/cd warnings/errors related to linting and unused localization keys
* chore: update dependencies for class-variance-authority, clsx, and match-sorter
* chore: bump @librechat/client to v0.1.8
* feat: add utility colors for theme customization and remove unused tailwindConfig
* v0.1.9
---------
Co-authored-by: Marco Beretta <81851188+berry-13@users.noreply.github.com>
2025-07-27 12:19:01 -04:00
|
|
|
import { useBadgeRowContext } from '~/Providers';
|
2025-07-25 11:51:42 -07:00
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
interface ServerState {
|
|
|
|
|
isInitializing: boolean;
|
|
|
|
|
oauthUrl: string | null;
|
|
|
|
|
oauthStartTime: number | null;
|
|
|
|
|
isCancellable: boolean;
|
|
|
|
|
pollInterval: NodeJS.Timeout | null;
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-25 11:51:42 -07:00
|
|
|
export function useMCPServerManager() {
|
|
|
|
|
const localize = useLocalize();
|
|
|
|
|
const { showToast } = useToastContext();
|
|
|
|
|
const { mcpSelect, startupConfig } = useBadgeRowContext();
|
|
|
|
|
const { mcpValues, setMCPValues, mcpToolDetails, isPinned, setIsPinned } = mcpSelect;
|
2025-07-28 09:25:34 -07:00
|
|
|
const queryClient = useQueryClient();
|
|
|
|
|
|
|
|
|
|
const [isConfigModalOpen, setIsConfigModalOpen] = useState(false);
|
|
|
|
|
const [selectedToolForConfig, setSelectedToolForConfig] = useState<TPlugin | null>(null);
|
|
|
|
|
const previousFocusRef = useRef<HTMLElement | null>(null);
|
|
|
|
|
const mcpValuesRef = useRef(mcpValues);
|
|
|
|
|
|
|
|
|
|
// fixes the issue where OAuth flows would deselect all the servers except the one that is being authenticated on success
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
mcpValuesRef.current = mcpValues;
|
|
|
|
|
}, [mcpValues]);
|
2025-07-25 11:51:42 -07:00
|
|
|
|
|
|
|
|
const configuredServers = useMemo(() => {
|
2025-07-28 09:25:34 -07:00
|
|
|
if (!startupConfig?.mcpServers) return [];
|
2025-07-25 11:51:42 -07:00
|
|
|
return Object.entries(startupConfig.mcpServers)
|
|
|
|
|
.filter(([, config]) => config.chatMenu !== false)
|
|
|
|
|
.map(([serverName]) => serverName);
|
|
|
|
|
}, [startupConfig?.mcpServers]);
|
|
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
const reinitializeMutation = useReinitializeMCPServerMutation();
|
|
|
|
|
const cancelOAuthMutation = useCancelMCPOAuthMutation();
|
2025-07-25 11:51:42 -07:00
|
|
|
|
|
|
|
|
const updateUserPluginsMutation = useUpdateUserPluginsMutation({
|
|
|
|
|
onSuccess: async () => {
|
|
|
|
|
showToast({ message: localize('com_nav_mcp_vars_updated'), status: 'success' });
|
|
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
|
queryClient.refetchQueries([QueryKeys.tools]),
|
|
|
|
|
queryClient.refetchQueries([QueryKeys.mcpAuthValues]),
|
|
|
|
|
queryClient.refetchQueries([QueryKeys.mcpConnectionStatus]),
|
|
|
|
|
]);
|
|
|
|
|
},
|
|
|
|
|
onError: (error: unknown) => {
|
|
|
|
|
console.error('Error updating MCP auth:', error);
|
|
|
|
|
showToast({
|
|
|
|
|
message: localize('com_nav_mcp_vars_update_error'),
|
|
|
|
|
status: 'error',
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
const [serverStates, setServerStates] = useState<Record<string, ServerState>>(() => {
|
|
|
|
|
const initialStates: Record<string, ServerState> = {};
|
|
|
|
|
configuredServers.forEach((serverName) => {
|
|
|
|
|
initialStates[serverName] = {
|
|
|
|
|
isInitializing: false,
|
|
|
|
|
oauthUrl: null,
|
|
|
|
|
oauthStartTime: null,
|
|
|
|
|
isCancellable: false,
|
|
|
|
|
pollInterval: null,
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
return initialStates;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const { data: connectionStatusData } = useMCPConnectionStatusQuery();
|
|
|
|
|
const connectionStatus = useMemo(
|
|
|
|
|
() => connectionStatusData?.connectionStatus || {},
|
|
|
|
|
[connectionStatusData?.connectionStatus],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (!mcpValues?.length) return;
|
|
|
|
|
|
|
|
|
|
const connectedSelected = mcpValues.filter(
|
|
|
|
|
(serverName) => connectionStatus[serverName]?.connectionState === 'connected',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (connectedSelected.length !== mcpValues.length) {
|
|
|
|
|
setMCPValues(connectedSelected);
|
|
|
|
|
}
|
|
|
|
|
}, [connectionStatus, mcpValues, setMCPValues]);
|
|
|
|
|
|
|
|
|
|
const updateServerState = useCallback((serverName: string, updates: Partial<ServerState>) => {
|
|
|
|
|
setServerStates((prev) => {
|
|
|
|
|
const newStates = { ...prev };
|
|
|
|
|
const currentState = newStates[serverName] || {
|
|
|
|
|
isInitializing: false,
|
|
|
|
|
oauthUrl: null,
|
|
|
|
|
oauthStartTime: null,
|
|
|
|
|
isCancellable: false,
|
|
|
|
|
pollInterval: null,
|
|
|
|
|
};
|
|
|
|
|
newStates[serverName] = { ...currentState, ...updates };
|
|
|
|
|
return newStates;
|
|
|
|
|
});
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
const cleanupServerState = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
const state = serverStates[serverName];
|
|
|
|
|
if (state?.pollInterval) {
|
|
|
|
|
clearInterval(state.pollInterval);
|
|
|
|
|
}
|
|
|
|
|
updateServerState(serverName, {
|
|
|
|
|
isInitializing: false,
|
|
|
|
|
oauthUrl: null,
|
|
|
|
|
oauthStartTime: null,
|
|
|
|
|
isCancellable: false,
|
|
|
|
|
pollInterval: null,
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
[serverStates, updateServerState],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const startServerPolling = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
const pollInterval = setInterval(async () => {
|
|
|
|
|
try {
|
|
|
|
|
await queryClient.refetchQueries([QueryKeys.mcpConnectionStatus]);
|
|
|
|
|
|
|
|
|
|
const freshConnectionData = queryClient.getQueryData([
|
|
|
|
|
QueryKeys.mcpConnectionStatus,
|
|
|
|
|
]) as any;
|
|
|
|
|
const freshConnectionStatus = freshConnectionData?.connectionStatus || {};
|
|
|
|
|
|
|
|
|
|
const state = serverStates[serverName];
|
|
|
|
|
const serverStatus = freshConnectionStatus[serverName];
|
|
|
|
|
|
|
|
|
|
if (serverStatus?.connectionState === 'connected') {
|
|
|
|
|
clearInterval(pollInterval);
|
|
|
|
|
|
|
|
|
|
showToast({
|
|
|
|
|
message: localize('com_ui_mcp_authenticated_success', { 0: serverName }),
|
|
|
|
|
status: 'success',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const currentValues = mcpValuesRef.current ?? [];
|
|
|
|
|
if (!currentValues.includes(serverName)) {
|
|
|
|
|
setMCPValues([...currentValues, serverName]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This delay is to ensure UI has updated with new connection status before cleanup
|
|
|
|
|
// Otherwise servers will show as disconnected for a second after OAuth flow completes
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
cleanupServerState(serverName);
|
|
|
|
|
}, 1000);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (state?.oauthStartTime && Date.now() - state.oauthStartTime > 180000) {
|
|
|
|
|
showToast({
|
|
|
|
|
message: localize('com_ui_mcp_oauth_timeout', { 0: serverName }),
|
|
|
|
|
status: 'error',
|
|
|
|
|
});
|
|
|
|
|
cleanupServerState(serverName);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (serverStatus?.connectionState === 'error') {
|
|
|
|
|
showToast({
|
|
|
|
|
message: localize('com_ui_mcp_init_failed'),
|
|
|
|
|
status: 'error',
|
|
|
|
|
});
|
|
|
|
|
cleanupServerState(serverName);
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error(`[MCP Manager] Error polling server ${serverName}:`, error);
|
2025-07-25 11:51:42 -07:00
|
|
|
}
|
2025-07-28 09:25:34 -07:00
|
|
|
}, 3500);
|
|
|
|
|
|
|
|
|
|
updateServerState(serverName, { pollInterval });
|
|
|
|
|
},
|
|
|
|
|
[
|
|
|
|
|
queryClient,
|
|
|
|
|
serverStates,
|
|
|
|
|
showToast,
|
|
|
|
|
localize,
|
|
|
|
|
setMCPValues,
|
|
|
|
|
cleanupServerState,
|
|
|
|
|
updateServerState,
|
|
|
|
|
],
|
|
|
|
|
);
|
2025-07-25 11:51:42 -07:00
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
const initializeServer = useCallback(
|
|
|
|
|
async (serverName: string) => {
|
|
|
|
|
updateServerState(serverName, { isInitializing: true });
|
2025-07-25 11:51:42 -07:00
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
try {
|
|
|
|
|
const response = await reinitializeMutation.mutateAsync(serverName);
|
2025-07-25 11:51:42 -07:00
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
if (response.success) {
|
|
|
|
|
if (response.oauthRequired && response.oauthUrl) {
|
|
|
|
|
updateServerState(serverName, {
|
|
|
|
|
oauthUrl: response.oauthUrl,
|
|
|
|
|
oauthStartTime: Date.now(),
|
|
|
|
|
isCancellable: true,
|
|
|
|
|
isInitializing: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
window.open(response.oauthUrl, '_blank', 'noopener,noreferrer');
|
|
|
|
|
|
|
|
|
|
startServerPolling(serverName);
|
|
|
|
|
} else {
|
|
|
|
|
await queryClient.refetchQueries([QueryKeys.mcpConnectionStatus]);
|
|
|
|
|
|
|
|
|
|
showToast({
|
|
|
|
|
message: localize('com_ui_mcp_initialized_success', { 0: serverName }),
|
|
|
|
|
status: 'success',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const currentValues = mcpValues ?? [];
|
|
|
|
|
if (!currentValues.includes(serverName)) {
|
|
|
|
|
setMCPValues([...currentValues, serverName]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cleanupServerState(serverName);
|
|
|
|
|
}
|
2025-07-28 22:34:52 -07:00
|
|
|
} else {
|
|
|
|
|
showToast({
|
|
|
|
|
message: localize('com_ui_mcp_init_failed', { 0: serverName }),
|
|
|
|
|
status: 'error',
|
|
|
|
|
});
|
|
|
|
|
cleanupServerState(serverName);
|
2025-07-25 11:51:42 -07:00
|
|
|
}
|
2025-07-28 09:25:34 -07:00
|
|
|
} catch (error) {
|
|
|
|
|
console.error(`[MCP Manager] Failed to initialize ${serverName}:`, error);
|
|
|
|
|
showToast({
|
|
|
|
|
message: localize('com_ui_mcp_init_failed', { 0: serverName }),
|
|
|
|
|
status: 'error',
|
|
|
|
|
});
|
|
|
|
|
cleanupServerState(serverName);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
[
|
|
|
|
|
updateServerState,
|
|
|
|
|
reinitializeMutation,
|
|
|
|
|
startServerPolling,
|
|
|
|
|
queryClient,
|
|
|
|
|
showToast,
|
|
|
|
|
localize,
|
|
|
|
|
mcpValues,
|
|
|
|
|
cleanupServerState,
|
|
|
|
|
setMCPValues,
|
|
|
|
|
],
|
|
|
|
|
);
|
2025-07-25 11:51:42 -07:00
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
const cancelOAuthFlow = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
queryClient.invalidateQueries([QueryKeys.mcpConnectionStatus]);
|
|
|
|
|
cleanupServerState(serverName);
|
|
|
|
|
cancelOAuthMutation.mutate(serverName);
|
2025-07-25 11:51:42 -07:00
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
showToast({
|
|
|
|
|
message: localize('com_ui_mcp_oauth_cancelled', { 0: serverName }),
|
|
|
|
|
status: 'warning',
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
[queryClient, cleanupServerState, showToast, localize, cancelOAuthMutation],
|
|
|
|
|
);
|
2025-07-25 11:51:42 -07:00
|
|
|
|
2025-07-28 09:25:34 -07:00
|
|
|
const isInitializing = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
return serverStates[serverName]?.isInitializing || false;
|
|
|
|
|
},
|
|
|
|
|
[serverStates],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const isCancellable = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
return serverStates[serverName]?.isCancellable || false;
|
|
|
|
|
},
|
|
|
|
|
[serverStates],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const getOAuthUrl = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
return serverStates[serverName]?.oauthUrl || null;
|
|
|
|
|
},
|
|
|
|
|
[serverStates],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const placeholderText = useMemo(
|
|
|
|
|
() => startupConfig?.interface?.mcpServers?.placeholder || localize('com_ui_mcp_servers'),
|
|
|
|
|
[startupConfig?.interface?.mcpServers?.placeholder, localize],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const batchToggleServers = useCallback(
|
|
|
|
|
(serverNames: string[]) => {
|
|
|
|
|
const connectedServers: string[] = [];
|
|
|
|
|
const disconnectedServers: string[] = [];
|
|
|
|
|
|
|
|
|
|
serverNames.forEach((serverName) => {
|
|
|
|
|
const serverStatus = connectionStatus[serverName];
|
|
|
|
|
if (serverStatus?.connectionState === 'connected') {
|
|
|
|
|
connectedServers.push(serverName);
|
|
|
|
|
} else {
|
|
|
|
|
disconnectedServers.push(serverName);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setMCPValues(connectedServers);
|
|
|
|
|
|
|
|
|
|
disconnectedServers.forEach((serverName) => {
|
|
|
|
|
initializeServer(serverName);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
[connectionStatus, setMCPValues, initializeServer],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const toggleServerSelection = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
const currentValues = mcpValues ?? [];
|
|
|
|
|
const isCurrentlySelected = currentValues.includes(serverName);
|
|
|
|
|
|
|
|
|
|
if (isCurrentlySelected) {
|
|
|
|
|
const filteredValues = currentValues.filter((name) => name !== serverName);
|
|
|
|
|
setMCPValues(filteredValues);
|
|
|
|
|
} else {
|
|
|
|
|
const serverStatus = connectionStatus[serverName];
|
|
|
|
|
if (serverStatus?.connectionState === 'connected') {
|
|
|
|
|
setMCPValues([...currentValues, serverName]);
|
|
|
|
|
} else {
|
|
|
|
|
initializeServer(serverName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
[mcpValues, setMCPValues, connectionStatus, initializeServer],
|
|
|
|
|
);
|
2025-07-25 11:51:42 -07:00
|
|
|
|
|
|
|
|
const handleConfigSave = useCallback(
|
|
|
|
|
(targetName: string, authData: Record<string, string>) => {
|
|
|
|
|
if (selectedToolForConfig && selectedToolForConfig.name === targetName) {
|
|
|
|
|
const payload: TUpdateUserPlugins = {
|
|
|
|
|
pluginKey: `${Constants.mcp_prefix}${targetName}`,
|
|
|
|
|
action: 'install',
|
|
|
|
|
auth: authData,
|
|
|
|
|
};
|
|
|
|
|
updateUserPluginsMutation.mutate(payload);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
[selectedToolForConfig, updateUserPluginsMutation],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const handleConfigRevoke = useCallback(
|
|
|
|
|
(targetName: string) => {
|
|
|
|
|
if (selectedToolForConfig && selectedToolForConfig.name === targetName) {
|
|
|
|
|
const payload: TUpdateUserPlugins = {
|
|
|
|
|
pluginKey: `${Constants.mcp_prefix}${targetName}`,
|
|
|
|
|
action: 'uninstall',
|
|
|
|
|
auth: {},
|
|
|
|
|
};
|
|
|
|
|
updateUserPluginsMutation.mutate(payload);
|
|
|
|
|
|
|
|
|
|
const currentValues = mcpValues ?? [];
|
|
|
|
|
const filteredValues = currentValues.filter((name) => name !== targetName);
|
|
|
|
|
setMCPValues(filteredValues);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
[selectedToolForConfig, updateUserPluginsMutation, mcpValues, setMCPValues],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const handleSave = useCallback(
|
|
|
|
|
(authData: Record<string, string>) => {
|
|
|
|
|
if (selectedToolForConfig) {
|
|
|
|
|
handleConfigSave(selectedToolForConfig.name, authData);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
[selectedToolForConfig, handleConfigSave],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const handleRevoke = useCallback(() => {
|
|
|
|
|
if (selectedToolForConfig) {
|
|
|
|
|
handleConfigRevoke(selectedToolForConfig.name);
|
|
|
|
|
}
|
|
|
|
|
}, [selectedToolForConfig, handleConfigRevoke]);
|
|
|
|
|
|
|
|
|
|
const handleDialogOpenChange = useCallback((open: boolean) => {
|
|
|
|
|
setIsConfigModalOpen(open);
|
|
|
|
|
|
|
|
|
|
if (!open && previousFocusRef.current) {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
if (previousFocusRef.current && typeof previousFocusRef.current.focus === 'function') {
|
|
|
|
|
previousFocusRef.current.focus();
|
|
|
|
|
}
|
|
|
|
|
previousFocusRef.current = null;
|
|
|
|
|
}, 0);
|
|
|
|
|
}
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
const getServerStatusIconProps = useCallback(
|
|
|
|
|
(serverName: string) => {
|
|
|
|
|
const tool = mcpToolDetails?.find((t) => t.name === serverName);
|
|
|
|
|
const serverStatus = connectionStatus[serverName];
|
|
|
|
|
const serverConfig = startupConfig?.mcpServers?.[serverName];
|
|
|
|
|
|
|
|
|
|
const handleConfigClick = (e: React.MouseEvent) => {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
previousFocusRef.current = document.activeElement as HTMLElement;
|
|
|
|
|
|
|
|
|
|
const configTool = tool || {
|
|
|
|
|
name: serverName,
|
|
|
|
|
pluginKey: `${Constants.mcp_prefix}${serverName}`,
|
|
|
|
|
authConfig: serverConfig?.customUserVars
|
|
|
|
|
? Object.entries(serverConfig.customUserVars).map(([key, config]) => ({
|
|
|
|
|
authField: key,
|
|
|
|
|
label: config.title,
|
|
|
|
|
description: config.description,
|
|
|
|
|
}))
|
|
|
|
|
: [],
|
|
|
|
|
authenticated: false,
|
|
|
|
|
};
|
|
|
|
|
setSelectedToolForConfig(configTool);
|
|
|
|
|
setIsConfigModalOpen(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleCancelClick = (e: React.MouseEvent) => {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
cancelOAuthFlow(serverName);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const hasCustomUserVars =
|
|
|
|
|
serverConfig?.customUserVars && Object.keys(serverConfig.customUserVars).length > 0;
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
serverName,
|
|
|
|
|
serverStatus,
|
|
|
|
|
tool,
|
|
|
|
|
onConfigClick: handleConfigClick,
|
|
|
|
|
isInitializing: isInitializing(serverName),
|
|
|
|
|
canCancel: isCancellable(serverName),
|
|
|
|
|
onCancel: handleCancelClick,
|
|
|
|
|
hasCustomUserVars,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
[
|
|
|
|
|
mcpToolDetails,
|
|
|
|
|
connectionStatus,
|
|
|
|
|
startupConfig?.mcpServers,
|
|
|
|
|
isInitializing,
|
|
|
|
|
isCancellable,
|
|
|
|
|
cancelOAuthFlow,
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const getConfigDialogProps = useCallback(() => {
|
|
|
|
|
if (!selectedToolForConfig) return null;
|
|
|
|
|
|
|
|
|
|
const fieldsSchema: Record<string, ConfigFieldDetail> = {};
|
|
|
|
|
if (selectedToolForConfig?.authConfig) {
|
|
|
|
|
selectedToolForConfig.authConfig.forEach((field) => {
|
|
|
|
|
fieldsSchema[field.authField] = {
|
|
|
|
|
title: field.label || field.authField,
|
|
|
|
|
description: field.description,
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const initialValues: Record<string, string> = {};
|
|
|
|
|
if (selectedToolForConfig?.authConfig) {
|
|
|
|
|
selectedToolForConfig.authConfig.forEach((field) => {
|
|
|
|
|
initialValues[field.authField] = '';
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
serverName: selectedToolForConfig.name,
|
|
|
|
|
serverStatus: connectionStatus[selectedToolForConfig.name],
|
|
|
|
|
isOpen: isConfigModalOpen,
|
|
|
|
|
onOpenChange: handleDialogOpenChange,
|
|
|
|
|
fieldsSchema,
|
|
|
|
|
initialValues,
|
|
|
|
|
onSave: handleSave,
|
|
|
|
|
onRevoke: handleRevoke,
|
|
|
|
|
isSubmitting: updateUserPluginsMutation.isLoading,
|
|
|
|
|
};
|
|
|
|
|
}, [
|
|
|
|
|
selectedToolForConfig,
|
|
|
|
|
connectionStatus,
|
|
|
|
|
isConfigModalOpen,
|
|
|
|
|
handleDialogOpenChange,
|
|
|
|
|
handleSave,
|
|
|
|
|
handleRevoke,
|
|
|
|
|
updateUserPluginsMutation.isLoading,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
configuredServers,
|
2025-07-28 09:25:34 -07:00
|
|
|
connectionStatus,
|
|
|
|
|
initializeServer,
|
|
|
|
|
cancelOAuthFlow,
|
|
|
|
|
isInitializing,
|
|
|
|
|
isCancellable,
|
|
|
|
|
getOAuthUrl,
|
2025-07-25 11:51:42 -07:00
|
|
|
mcpValues,
|
2025-07-28 09:25:34 -07:00
|
|
|
setMCPValues,
|
|
|
|
|
|
2025-07-25 11:51:42 -07:00
|
|
|
mcpToolDetails,
|
|
|
|
|
isPinned,
|
|
|
|
|
setIsPinned,
|
|
|
|
|
placeholderText,
|
|
|
|
|
batchToggleServers,
|
2025-07-28 09:25:34 -07:00
|
|
|
toggleServerSelection,
|
|
|
|
|
localize,
|
2025-07-25 11:51:42 -07:00
|
|
|
|
|
|
|
|
isConfigModalOpen,
|
2025-07-28 09:25:34 -07:00
|
|
|
handleDialogOpenChange,
|
|
|
|
|
selectedToolForConfig,
|
|
|
|
|
setSelectedToolForConfig,
|
|
|
|
|
handleSave,
|
|
|
|
|
handleRevoke,
|
|
|
|
|
getServerStatusIconProps,
|
2025-07-25 11:51:42 -07:00
|
|
|
getConfigDialogProps,
|
|
|
|
|
};
|
|
|
|
|
}
|