feat(webui): add MCP management dialog
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import {
|
||||
forwardRef,
|
||||
useEffect,
|
||||
useId,
|
||||
useMemo,
|
||||
useState,
|
||||
@@ -17,7 +16,6 @@ import {
|
||||
Database,
|
||||
ExternalLink,
|
||||
Loader2,
|
||||
MoreHorizontal,
|
||||
PauseCircle,
|
||||
PlayCircle,
|
||||
Plus,
|
||||
@@ -36,6 +34,10 @@ import {
|
||||
SETTINGS_SEARCH_INPUT_CLASS,
|
||||
SettingsSectionTitle,
|
||||
} from "@/components/settings/shared/SettingsControls";
|
||||
import {
|
||||
McpManagementDialog,
|
||||
type McpManagementTab,
|
||||
} from "@/components/settings/system/McpManagementDialog";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import {
|
||||
DropdownMenu,
|
||||
@@ -521,8 +523,8 @@ function McpAppsCatalogRow({
|
||||
}) {
|
||||
const { t } = useTranslation();
|
||||
const tx = (key: string, fallback: string) => t(key, { defaultValue: fallback });
|
||||
const [setupOpen, setSetupOpen] = useState(false);
|
||||
const [toolsOpen, setToolsOpen] = useState(false);
|
||||
const [managementOpen, setManagementOpen] = useState(false);
|
||||
const [managementTab, setManagementTab] = useState<McpManagementTab>("overview");
|
||||
const enableBusy = actionKey === `enable:${preset.name}`;
|
||||
const disableBusy = actionKey === `disable:${preset.name}`;
|
||||
const removeBusy = actionKey === `remove:${preset.name}`;
|
||||
@@ -546,18 +548,14 @@ function McpAppsCatalogRow({
|
||||
const statusLabel = toggleable
|
||||
? tx("settings.nanobotFeatures.enabled", "Enabled")
|
||||
: runtimeConnected
|
||||
? tx("settings.mcp.connected", "Connected.")
|
||||
? tx("connection.open", "Connected")
|
||||
: mcpPresetStatusLabel(preset.status, tx);
|
||||
const failureLabel = tx("settings.mcp.connectionFailed", "Connection failed.");
|
||||
const reconnectLabel = tx("settings.mcp.reconnect", "Reconnect");
|
||||
const canEnable =
|
||||
preset.install_supported &&
|
||||
(missingFields.length === 0 || missingFields.every((field) => Boolean(values[field.name]?.trim())));
|
||||
const toolNames = preset.tool_names ?? [];
|
||||
const enabledTools = preset.enabled_tools ?? ["*"];
|
||||
const allowAllTools = enabledTools.includes("*");
|
||||
const enabledSet = new Set(allowAllTools ? toolNames : enabledTools);
|
||||
const description = preset.description || preset.note || preset.name;
|
||||
const failureStatusLabel = failureLabel.replace(/[.!。!]+$/u, "");
|
||||
const description = tx(
|
||||
`settings.mcp.presetDescriptions.${preset.name}`,
|
||||
preset.description || preset.note || preset.name,
|
||||
);
|
||||
const detail = agentPlugin && preset.requires
|
||||
? `${description} · ${preset.requires}`
|
||||
: description || preset.requires;
|
||||
@@ -567,32 +565,21 @@ function McpAppsCatalogRow({
|
||||
const callbackHelpId = `${callbackInputId}-help`;
|
||||
const callbackErrorId = `${callbackInputId}-error`;
|
||||
|
||||
useEffect(() => {
|
||||
if (preset.configured || !preset.install_supported) setSetupOpen(false);
|
||||
}, [preset.configured, preset.install_supported]);
|
||||
|
||||
const enableOrOpenSetup = () => {
|
||||
if (isOAuth) {
|
||||
onOAuthConnect(preset.name);
|
||||
return;
|
||||
}
|
||||
if (needsSetupInput || (preset.installed && !preset.configured && hasFields)) {
|
||||
setSetupOpen(true);
|
||||
setManagementTab("connection");
|
||||
setManagementOpen(true);
|
||||
return;
|
||||
}
|
||||
onAction("enable", preset.name, values);
|
||||
};
|
||||
const submitSetup = () => {
|
||||
if (!canEnable) return;
|
||||
onAction("enable", preset.name, values);
|
||||
};
|
||||
const setTools = (next: string[]) => onToolsChange(preset.name, next);
|
||||
const toggleTool = (toolName: string) => {
|
||||
const next = new Set(allowAllTools ? toolNames : enabledTools);
|
||||
if (next.has(toolName)) next.delete(toolName);
|
||||
else next.add(toolName);
|
||||
const nextValues = Array.from(next);
|
||||
setTools(nextValues.length === toolNames.length ? ["*"] : nextValues);
|
||||
const openManagement = (tab: McpManagementTab = "overview") => {
|
||||
setManagementTab(tab);
|
||||
setManagementOpen(true);
|
||||
};
|
||||
|
||||
return (
|
||||
@@ -660,112 +647,56 @@ function McpAppsCatalogRow({
|
||||
</AppsActionButton>
|
||||
</>
|
||||
) : runtimeFailed && configuredInstalled ? (
|
||||
<>
|
||||
<AppsActionButton
|
||||
ariaLabel={t("settings.mcp.reconnectTitle", {
|
||||
name: preset.display_name,
|
||||
defaultValue: "Reconnect {{name}}",
|
||||
})}
|
||||
visibleLabel={reconnectLabel}
|
||||
busy={isOAuth ? oauthBusy : reconnectBusy}
|
||||
disabled={anotherOAuthBusy || (busy && !oauthBusy && !reconnectBusy)}
|
||||
onClick={() => {
|
||||
if (isOAuth) onOAuthConnect(preset.name, true);
|
||||
else onAction("reconnect", preset.name);
|
||||
}}
|
||||
>
|
||||
<RotateCcw className="h-4 w-4" aria-hidden />
|
||||
</AppsActionButton>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<AppsActionButton
|
||||
ariaLabel={t("settings.mcp.actionsTitle", {
|
||||
name: preset.display_name,
|
||||
defaultValue: "Actions for {{name}}",
|
||||
})}
|
||||
busy={testBusy || toolsBusy || removeBusy}
|
||||
disabled={busy}
|
||||
>
|
||||
<MoreHorizontal className="h-4 w-4" aria-hidden />
|
||||
</AppsActionButton>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
<DropdownMenuItem disabled={busy} onClick={() => onAction("test", preset.name)}>
|
||||
<PlayCircle aria-hidden />
|
||||
{tx("settings.mcp.test", "Test")}
|
||||
</DropdownMenuItem>
|
||||
{toolNames.length ? (
|
||||
<DropdownMenuItem disabled={busy} onClick={() => setToolsOpen((open) => !open)}>
|
||||
<SlidersHorizontal aria-hidden />
|
||||
{tx("settings.mcp.toolScope", "Tools")}
|
||||
</DropdownMenuItem>
|
||||
) : null}
|
||||
<DropdownMenuItem
|
||||
tone="destructive"
|
||||
disabled={busy}
|
||||
onClick={() => onAction("remove", preset.name)}
|
||||
>
|
||||
<Trash2 aria-hidden />
|
||||
{tx("settings.mcp.remove", "Remove")}
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
</>
|
||||
<AppsActionButton
|
||||
ariaLabel={t("settings.mcp.manageTitle", {
|
||||
name: preset.display_name,
|
||||
defaultValue: "Manage {{name}}",
|
||||
})}
|
||||
visibleLabel={tx("settings.mcp.fixConnection", "Fix connection")}
|
||||
disabled={anotherOAuthBusy}
|
||||
onClick={() => openManagement("connection")}
|
||||
>
|
||||
<SlidersHorizontal className="h-4 w-4" aria-hidden />
|
||||
</AppsActionButton>
|
||||
) : readyInstalled ? (
|
||||
<>
|
||||
toggleable ? (
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<AppsActionButton
|
||||
ariaLabel={`${preset.display_name}: ${statusLabel}`}
|
||||
visibleLabel={statusLabel}
|
||||
busy={testBusy || toolsBusy || disableBusy}
|
||||
busy={disableBusy}
|
||||
disabled={busy}
|
||||
tone={toggleable || runtimeConnected ? "installed" : "default"}
|
||||
tone="installed"
|
||||
>
|
||||
{toggleable || runtimeConnected ? (
|
||||
<Check className="h-4 w-4" aria-hidden />
|
||||
) : (
|
||||
<Server className="h-4 w-4" aria-hidden />
|
||||
)}
|
||||
<Check className="h-4 w-4" aria-hidden />
|
||||
</AppsActionButton>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="end">
|
||||
{!toggleable ? (
|
||||
<DropdownMenuItem disabled={busy} onClick={() => onAction("test", preset.name)}>
|
||||
<PlayCircle aria-hidden />
|
||||
{tx("settings.mcp.test", "Test")}
|
||||
</DropdownMenuItem>
|
||||
) : null}
|
||||
{!toggleable && toolNames.length ? (
|
||||
<DropdownMenuItem disabled={busy} onClick={() => setToolsOpen((open) => !open)}>
|
||||
<SlidersHorizontal aria-hidden />
|
||||
{tx("settings.mcp.toolScope", "Tools")}
|
||||
</DropdownMenuItem>
|
||||
) : null}
|
||||
<DropdownMenuItem
|
||||
tone={toggleable ? undefined : "destructive"}
|
||||
disabled={busy}
|
||||
onClick={() => onAction(toggleable ? "disable" : "remove", preset.name)}
|
||||
onClick={() => onAction("disable", preset.name)}
|
||||
>
|
||||
{toggleable ? <PauseCircle aria-hidden /> : <Trash2 aria-hidden />}
|
||||
{toggleable
|
||||
? tx("settings.nanobotFeatures.disable", "Disable")
|
||||
: tx("settings.mcp.remove", "Remove")}
|
||||
<PauseCircle aria-hidden />
|
||||
{tx("settings.nanobotFeatures.disable", "Disable")}
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
{!toggleable ? (
|
||||
<AppsActionButton
|
||||
ariaLabel={tx("settings.mcp.remove", "Remove")}
|
||||
busy={removeBusy}
|
||||
disabled={busy && !removeBusy}
|
||||
tone="danger"
|
||||
onClick={() => onAction("remove", preset.name)}
|
||||
>
|
||||
<Trash2 className="h-4 w-4" aria-hidden />
|
||||
</AppsActionButton>
|
||||
) : null}
|
||||
</>
|
||||
) : (
|
||||
<AppsActionButton
|
||||
ariaLabel={t("settings.mcp.manageTitle", {
|
||||
name: preset.display_name,
|
||||
defaultValue: "Manage {{name}}",
|
||||
})}
|
||||
visibleLabel={tx("settings.mcp.manage", "Manage")}
|
||||
busy={testBusy || toolsBusy || removeBusy || reconnectBusy}
|
||||
disabled={busy}
|
||||
tone={runtimeConnected ? "installed" : "default"}
|
||||
onClick={() => openManagement("overview")}
|
||||
>
|
||||
<Check className="h-4 w-4" aria-hidden />
|
||||
</AppsActionButton>
|
||||
)
|
||||
) : preset.enabled === false ? (
|
||||
<AppsActionButton
|
||||
ariaLabel={tx("settings.nanobotFeatures.enable", "Enable")}
|
||||
@@ -790,7 +721,7 @@ function McpAppsCatalogRow({
|
||||
visibleLabel={hasFields ? tx("settings.mcp.configure", "Connect") : tx("settings.mcp.enable", "Enable")}
|
||||
busy={enableBusy}
|
||||
onClick={() => {
|
||||
if (hasFields) setSetupOpen(true);
|
||||
if (hasFields) openManagement("connection");
|
||||
else onAction("enable", preset.name, values);
|
||||
}}
|
||||
/>
|
||||
@@ -920,128 +851,22 @@ function McpAppsCatalogRow({
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
{setupOpen && preset.install_supported && hasFields ? (
|
||||
<div className="mx-3 mb-3 rounded-[14px] bg-background/55 p-3">
|
||||
<div className="flex items-center justify-between gap-3">
|
||||
<div className="min-w-0">
|
||||
<div className="truncate text-[12.5px] font-semibold text-foreground">
|
||||
{t("settings.mcp.connectTitle", {
|
||||
name: preset.display_name,
|
||||
defaultValue: "Connect {{name}}",
|
||||
})}
|
||||
</div>
|
||||
<p className="mt-0.5 text-[11.5px] text-muted-foreground">
|
||||
{tx("settings.mcp.connectHint", "Add the key from your account settings.")}
|
||||
</p>
|
||||
</div>
|
||||
<Button
|
||||
type="button"
|
||||
size="sm"
|
||||
variant="ghost"
|
||||
disabled={busy}
|
||||
onClick={() => setSetupOpen(false)}
|
||||
className="h-7 rounded-full px-2.5 text-[11.5px] font-semibold text-muted-foreground"
|
||||
>
|
||||
{tx("settings.actions.cancel", "Cancel")}
|
||||
</Button>
|
||||
</div>
|
||||
<div className="mt-3 grid gap-2">
|
||||
{preset.required_fields.map((field) => (
|
||||
<label key={field.name} className="min-w-0">
|
||||
<span className="mb-1 block text-[11.5px] font-medium text-muted-foreground">
|
||||
{field.label}
|
||||
{field.configured ? (
|
||||
<span className="ml-1 font-normal text-emerald-600 dark:text-emerald-300">
|
||||
{tx("settings.mcp.configured", "configured")}
|
||||
</span>
|
||||
) : null}
|
||||
</span>
|
||||
<Input
|
||||
type={field.secret ? "password" : "text"}
|
||||
value={values[field.name] ?? ""}
|
||||
onChange={(event) => onFieldChange(preset.name, field.name, event.target.value)}
|
||||
placeholder={
|
||||
field.configured
|
||||
? tx("settings.mcp.keepExisting", "Leave blank to keep existing")
|
||||
: field.placeholder
|
||||
}
|
||||
className="h-9 rounded-full bg-background/80 text-[12.5px]"
|
||||
/>
|
||||
</label>
|
||||
))}
|
||||
</div>
|
||||
<div className="mt-3 flex justify-end">
|
||||
<Button
|
||||
type="button"
|
||||
size="sm"
|
||||
disabled={busy || !canEnable}
|
||||
onClick={submitSetup}
|
||||
className="h-8 rounded-full px-3 text-[12px] font-semibold"
|
||||
>
|
||||
{enableBusy ? (
|
||||
<Loader2 className="mr-1.5 h-3.5 w-3.5 animate-spin" aria-hidden />
|
||||
) : (
|
||||
<Check className="mr-1.5 h-3.5 w-3.5" aria-hidden />
|
||||
)}
|
||||
{preset.installed
|
||||
? tx("settings.mcp.updateSetup", "Update setup")
|
||||
: tx("settings.mcp.saveAndEnable", "Save and enable")}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
{toolsOpen && configuredInstalled && toolNames.length ? (
|
||||
<div className="mx-3 mb-3 rounded-[14px] bg-background/55 p-3">
|
||||
<div className="flex flex-wrap items-center justify-between gap-2">
|
||||
<div className="text-[11.5px] font-medium text-muted-foreground">
|
||||
{tx("settings.mcp.toolScope", "Tools")}
|
||||
</div>
|
||||
<div className="flex items-center gap-1">
|
||||
<Button
|
||||
type="button"
|
||||
size="sm"
|
||||
variant={allowAllTools ? "default" : "outline"}
|
||||
disabled={toolsBusy}
|
||||
onClick={() => setTools(["*"])}
|
||||
className="h-7 rounded-full px-2.5 text-[11.5px] font-semibold"
|
||||
>
|
||||
{tx("settings.mcp.allTools", "All")}
|
||||
</Button>
|
||||
<Button
|
||||
type="button"
|
||||
size="sm"
|
||||
variant={!allowAllTools && enabledSet.size === 0 ? "default" : "outline"}
|
||||
disabled={toolsBusy}
|
||||
onClick={() => setTools([])}
|
||||
className="h-7 rounded-full px-2.5 text-[11.5px] font-semibold"
|
||||
>
|
||||
{tx("settings.mcp.noTools", "None")}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-2 flex flex-wrap gap-1.5">
|
||||
{toolNames.map((toolName) => {
|
||||
const selected = enabledSet.has(toolName);
|
||||
return (
|
||||
<button
|
||||
key={toolName}
|
||||
type="button"
|
||||
disabled={toolsBusy}
|
||||
onClick={() => toggleTool(toolName)}
|
||||
className={cn(
|
||||
"max-w-full rounded-full border px-2.5 py-1 font-mono text-[11px] transition-colors",
|
||||
selected
|
||||
? "border-blue-500/25 bg-blue-500/10 text-blue-700 dark:text-blue-300"
|
||||
: "border-border/55 bg-muted/30 text-muted-foreground hover:bg-muted/60",
|
||||
)}
|
||||
>
|
||||
<span className="block max-w-[220px] truncate">{toolName}</span>
|
||||
</button>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
{managementOpen ? (
|
||||
<McpManagementDialog
|
||||
preset={preset}
|
||||
values={values}
|
||||
actionKey={actionKey}
|
||||
statusLabel={runtimeFailed && configuredInstalled ? failureStatusLabel : statusLabel}
|
||||
statusTone={runtimeFailed ? "warning" : configuredInstalled ? "success" : "neutral"}
|
||||
tab={managementTab}
|
||||
icon={<McpPresetLogo preset={preset} showBrandLogos={showBrandLogos} compact />}
|
||||
onTabChange={setManagementTab}
|
||||
onOpenChange={setManagementOpen}
|
||||
onFieldChange={onFieldChange}
|
||||
onAction={onAction}
|
||||
onOAuthConnect={onOAuthConnect}
|
||||
onToolsChange={onToolsChange}
|
||||
/>
|
||||
) : null}
|
||||
</article>
|
||||
);
|
||||
@@ -1502,7 +1327,15 @@ function mcpPresetStatusLabel(
|
||||
}
|
||||
}
|
||||
|
||||
function McpPresetLogo({ preset, showBrandLogos }: { preset: McpPresetInfo; showBrandLogos: boolean }) {
|
||||
function McpPresetLogo({
|
||||
preset,
|
||||
showBrandLogos,
|
||||
compact = false,
|
||||
}: {
|
||||
preset: McpPresetInfo;
|
||||
showBrandLogos: boolean;
|
||||
compact?: boolean;
|
||||
}) {
|
||||
const bg = preset.brand_color || "hsl(var(--muted))";
|
||||
const logoUrls = useMemo(() => logoFallbackUrls(preset.logo_url), [preset.logo_url]);
|
||||
const { logoUrl, onLogoError, onLogoLoad } = useLogoFallback(logoUrls);
|
||||
@@ -1517,14 +1350,17 @@ function McpPresetLogo({ preset, showBrandLogos }: { preset: McpPresetInfo; show
|
||||
if ((showBrandLogos || packagedLogo) && logoUrl) {
|
||||
return (
|
||||
<span
|
||||
className="grid h-11 w-11 shrink-0 place-items-center rounded-[8px] border border-border/45 bg-background"
|
||||
className={cn(
|
||||
"grid shrink-0 place-items-center border border-border/45 bg-background",
|
||||
compact ? "h-10 w-10 rounded-[10px]" : "h-11 w-11 rounded-[8px]",
|
||||
)}
|
||||
>
|
||||
<img
|
||||
src={logoUrl}
|
||||
alt=""
|
||||
decoding="async"
|
||||
loading="lazy"
|
||||
className="h-6 w-6 object-contain"
|
||||
className={cn("object-contain", compact ? "h-[22px] w-[22px]" : "h-6 w-6")}
|
||||
onLoad={onLogoLoad}
|
||||
onError={onLogoError}
|
||||
/>
|
||||
@@ -1533,7 +1369,12 @@ function McpPresetLogo({ preset, showBrandLogos }: { preset: McpPresetInfo; show
|
||||
}
|
||||
return (
|
||||
<span
|
||||
className="grid h-11 w-11 shrink-0 place-items-center rounded-[8px] text-[13px] font-semibold text-white"
|
||||
className={cn(
|
||||
"grid shrink-0 place-items-center font-semibold text-white",
|
||||
compact
|
||||
? "h-10 w-10 rounded-[10px] text-[12px]"
|
||||
: "h-11 w-11 rounded-[8px] text-[13px]",
|
||||
)}
|
||||
style={{ backgroundColor: bg }}
|
||||
>
|
||||
{initials}
|
||||
|
||||
@@ -0,0 +1,701 @@
|
||||
import { useEffect, useMemo, useRef, useState, type ReactNode } from "react";
|
||||
import {
|
||||
Check,
|
||||
ExternalLink,
|
||||
Loader2,
|
||||
RotateCcw,
|
||||
Search,
|
||||
Server,
|
||||
SlidersHorizontal,
|
||||
Trash2,
|
||||
X,
|
||||
} from "lucide-react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
import { Button } from "@/components/ui/button";
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogDescription,
|
||||
DialogTitle,
|
||||
} from "@/components/ui/dialog";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { SegmentedControl } from "@/components/ui/segmented-control";
|
||||
import type { McpPresetInfo } from "@/lib/types";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
export type McpManagementTab = "overview" | "tools" | "connection";
|
||||
|
||||
type McpAction = "enable" | "disable" | "remove" | "test" | "reconnect";
|
||||
|
||||
interface McpManagementDialogProps {
|
||||
preset: McpPresetInfo;
|
||||
values: Record<string, string>;
|
||||
actionKey: string | null;
|
||||
statusLabel: string;
|
||||
statusTone: "success" | "warning" | "neutral";
|
||||
tab: McpManagementTab;
|
||||
icon: ReactNode;
|
||||
onTabChange: (tab: McpManagementTab) => void;
|
||||
onOpenChange: (open: boolean) => void;
|
||||
onFieldChange: (presetName: string, fieldName: string, value: string) => void;
|
||||
onAction: (action: McpAction, name: string, values?: Record<string, string>) => void;
|
||||
onOAuthConnect: (name: string, reset?: boolean) => void;
|
||||
onToolsChange: (name: string, enabledTools: string[]) => void;
|
||||
}
|
||||
|
||||
export function McpManagementDialog({
|
||||
preset,
|
||||
values,
|
||||
actionKey,
|
||||
statusLabel,
|
||||
statusTone,
|
||||
tab,
|
||||
icon,
|
||||
onTabChange,
|
||||
onOpenChange,
|
||||
onFieldChange,
|
||||
onAction,
|
||||
onOAuthConnect,
|
||||
onToolsChange,
|
||||
}: McpManagementDialogProps) {
|
||||
const { t } = useTranslation();
|
||||
const tx = (key: string, fallback: string) => t(key, { defaultValue: fallback });
|
||||
const inventoryRef = useRef(preset.tool_names ?? []);
|
||||
if (preset.tool_names?.length) inventoryRef.current = preset.tool_names;
|
||||
const toolNames = inventoryRef.current;
|
||||
const [toolQuery, setToolQuery] = useState("");
|
||||
const [draftEnabledTools, setDraftEnabledTools] = useState<string[]>(
|
||||
preset.enabled_tools ?? ["*"],
|
||||
);
|
||||
const testBusy = actionKey === `test:${preset.name}`;
|
||||
const reconnectBusy = actionKey === `reconnect:${preset.name}`;
|
||||
const removeBusy = actionKey === `remove:${preset.name}`;
|
||||
const enableBusy = actionKey === `enable:${preset.name}`;
|
||||
const toolsBusy = actionKey === `tools:${preset.name}`;
|
||||
const oauthBusy = actionKey === `oauth:${preset.name}`;
|
||||
const busy = testBusy || reconnectBusy || removeBusy || enableBusy || toolsBusy || oauthBusy;
|
||||
const configuredInstalled = preset.installed && preset.configured;
|
||||
const isOAuth = preset.auth === "oauth";
|
||||
const inspectionRequestedRef = useRef(false);
|
||||
const allowAllTools = draftEnabledTools.includes("*");
|
||||
const selectedTools = new Set(allowAllTools ? toolNames : draftEnabledTools);
|
||||
const normalizedQuery = toolQuery.trim().toLowerCase();
|
||||
const filteredTools = useMemo(
|
||||
() => toolNames.filter((name) => name.toLowerCase().includes(normalizedQuery)),
|
||||
[normalizedQuery, toolNames],
|
||||
);
|
||||
const knownToolCount = preset.tool_count ?? toolNames.length;
|
||||
const selectedToolCount = allowAllTools ? knownToolCount : selectedTools.size;
|
||||
const requiredFieldsComplete = preset.required_fields
|
||||
.filter((field) => field.required && !field.configured)
|
||||
.every((field) => Boolean(values[field.name]?.trim()));
|
||||
const initialTools = normalizeTools(preset.enabled_tools ?? ["*"]);
|
||||
const draftTools = normalizeTools(draftEnabledTools);
|
||||
const description = tx(
|
||||
`settings.mcp.presetDescriptions.${preset.name}`,
|
||||
preset.description || preset.note || preset.name,
|
||||
);
|
||||
const toolsDirty = initialTools.join("\n") !== draftTools.join("\n");
|
||||
const tabs: Array<{ value: McpManagementTab; label: ReactNode }> = [
|
||||
{ value: "overview", label: tx("settings.mcp.overviewTab", "Overview") },
|
||||
{
|
||||
value: "tools",
|
||||
label: tx("settings.mcp.toolScope", "Tools"),
|
||||
},
|
||||
{ value: "connection", label: tx("settings.mcp.connectionTab", "Connection") },
|
||||
];
|
||||
const activePanelLabel = tab === "overview"
|
||||
? tx("settings.mcp.overviewTab", "Overview")
|
||||
: tab === "tools"
|
||||
? tx("settings.mcp.toolScope", "Tools")
|
||||
: tx("settings.mcp.connectionTab", "Connection");
|
||||
|
||||
const toggleTool = (toolName: string) => {
|
||||
const next = new Set(allowAllTools ? toolNames : draftEnabledTools);
|
||||
if (next.has(toolName)) next.delete(toolName);
|
||||
else next.add(toolName);
|
||||
setDraftEnabledTools(next.size === toolNames.length ? ["*"] : Array.from(next));
|
||||
};
|
||||
|
||||
const connect = () => {
|
||||
onOpenChange(false);
|
||||
if (isOAuth) {
|
||||
onOAuthConnect(preset.name, configuredInstalled);
|
||||
return;
|
||||
}
|
||||
onAction(configuredInstalled ? "reconnect" : "enable", preset.name, values);
|
||||
};
|
||||
|
||||
const inspectTools = () => {
|
||||
inspectionRequestedRef.current = true;
|
||||
onAction("test", preset.name);
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
if (
|
||||
tab !== "tools" ||
|
||||
!configuredInstalled ||
|
||||
toolNames.length ||
|
||||
busy ||
|
||||
preset.error ||
|
||||
inspectionRequestedRef.current
|
||||
) {
|
||||
return;
|
||||
}
|
||||
inspectionRequestedRef.current = true;
|
||||
onAction("test", preset.name);
|
||||
}, [busy, configuredInstalled, onAction, preset.error, preset.name, tab, toolNames.length]);
|
||||
|
||||
return (
|
||||
<Dialog open onOpenChange={onOpenChange}>
|
||||
<DialogContent
|
||||
showCloseButton={false}
|
||||
className={cn(
|
||||
"flex h-[min(34rem,calc(100dvh-2rem))] w-[calc(100vw-2rem)] max-w-[42rem] flex-col gap-0 overflow-hidden p-0",
|
||||
"rounded-[22px]",
|
||||
)}
|
||||
>
|
||||
<div className="flex shrink-0 items-center gap-3 border-b border-border/45 px-5 py-3.5 sm:px-6">
|
||||
<div className="shrink-0">{icon}</div>
|
||||
<div className="min-w-0 flex-1">
|
||||
<DialogTitle className="truncate text-[17px] leading-6 tracking-[-0.01em]">
|
||||
{preset.display_name}
|
||||
</DialogTitle>
|
||||
<DialogDescription className="sr-only">
|
||||
{description}
|
||||
</DialogDescription>
|
||||
</div>
|
||||
<div className="flex shrink-0 items-center gap-1">
|
||||
<StatusPill tone={statusTone}>{statusLabel}</StatusPill>
|
||||
<Button
|
||||
type="button"
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
aria-label={tx("common.close", "Close")}
|
||||
onClick={() => onOpenChange(false)}
|
||||
className="-mr-2 h-10 w-10 shrink-0 rounded-full text-muted-foreground"
|
||||
>
|
||||
<X className="h-4 w-4" aria-hidden />
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="shrink-0 border-b border-border/45 px-5 py-3 sm:px-6">
|
||||
<SegmentedControl
|
||||
value={tab}
|
||||
options={tabs}
|
||||
onChange={onTabChange}
|
||||
mode="tabs"
|
||||
ariaLabel={tx("settings.mcp.manageTabs", "MCP management sections")}
|
||||
className="w-full max-w-[22rem]"
|
||||
itemClassName="flex-1"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div
|
||||
role="tabpanel"
|
||||
aria-label={activePanelLabel}
|
||||
className="min-h-0 flex-1 overflow-y-auto overscroll-contain px-5 py-5 scrollbar-thin scrollbar-track-transparent sm:px-6"
|
||||
>
|
||||
{tab === "overview" ? (
|
||||
<OverviewPanel
|
||||
preset={preset}
|
||||
description={description}
|
||||
statusLabel={statusLabel}
|
||||
knownToolCount={knownToolCount}
|
||||
selectedToolCount={selectedToolCount}
|
||||
/>
|
||||
) : tab === "tools" ? (
|
||||
<ToolsPanel
|
||||
preset={preset}
|
||||
toolNames={toolNames}
|
||||
filteredTools={filteredTools}
|
||||
query={toolQuery}
|
||||
selectedTools={selectedTools}
|
||||
selectedToolCount={selectedToolCount}
|
||||
toolsBusy={toolsBusy}
|
||||
testBusy={testBusy}
|
||||
configuredInstalled={configuredInstalled}
|
||||
onQueryChange={setToolQuery}
|
||||
onToggleTool={toggleTool}
|
||||
onSelectAll={() => setDraftEnabledTools(["*"])}
|
||||
onClear={() => setDraftEnabledTools([])}
|
||||
onTest={inspectTools}
|
||||
onOpenConnection={() => onTabChange("connection")}
|
||||
/>
|
||||
) : (
|
||||
<ConnectionPanel
|
||||
preset={preset}
|
||||
values={values}
|
||||
busy={busy}
|
||||
connectBusy={reconnectBusy || enableBusy || oauthBusy}
|
||||
removeBusy={removeBusy}
|
||||
requiredFieldsComplete={requiredFieldsComplete}
|
||||
onFieldChange={onFieldChange}
|
||||
onConnect={connect}
|
||||
onRemove={() => {
|
||||
onOpenChange(false);
|
||||
onAction("remove", preset.name);
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{tab === "tools" && toolsDirty ? (
|
||||
<div className="flex shrink-0 items-center justify-end border-t border-border/45 bg-background/95 px-5 py-3 sm:px-6">
|
||||
<Button
|
||||
type="button"
|
||||
disabled={toolsBusy || !toolNames.length}
|
||||
onClick={() => onToolsChange(preset.name, draftEnabledTools)}
|
||||
className="h-9 rounded-full px-4 text-[13px] font-semibold"
|
||||
>
|
||||
{toolsBusy ? (
|
||||
<Loader2 className="mr-1.5 h-3.5 w-3.5 animate-spin motion-reduce:animate-none" aria-hidden />
|
||||
) : (
|
||||
<Check className="mr-1.5 h-3.5 w-3.5" aria-hidden />
|
||||
)}
|
||||
{tx("settings.mcp.applyChanges", "Apply changes")}
|
||||
</Button>
|
||||
</div>
|
||||
) : null}
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
);
|
||||
}
|
||||
|
||||
function OverviewPanel({
|
||||
preset,
|
||||
description,
|
||||
statusLabel,
|
||||
knownToolCount,
|
||||
selectedToolCount,
|
||||
}: {
|
||||
preset: McpPresetInfo;
|
||||
description: string;
|
||||
statusLabel: string;
|
||||
knownToolCount: number;
|
||||
selectedToolCount: number;
|
||||
}) {
|
||||
const { t } = useTranslation();
|
||||
const tx = (key: string, fallback: string) => t(key, { defaultValue: fallback });
|
||||
const previewTools = (preset.tool_names ?? []).slice(0, 4);
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<section className="rounded-[16px] border border-border/55 px-4 py-3.5">
|
||||
<h3 className="text-[13px] font-semibold text-foreground">
|
||||
{tx("settings.mcp.about", "About this MCP")}
|
||||
</h3>
|
||||
<p className="mt-1.5 max-w-[62ch] text-[14px] leading-6 text-muted-foreground">
|
||||
{description}
|
||||
</p>
|
||||
{preset.docs_url ? (
|
||||
<a
|
||||
href={preset.docs_url}
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="mt-2 inline-flex min-h-9 items-center gap-1.5 rounded-full text-[13px] font-semibold text-foreground/75 transition-colors hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
|
||||
>
|
||||
{tx("settings.mcp.openDocs", "Open docs")}
|
||||
<ExternalLink className="h-3.5 w-3.5" aria-hidden />
|
||||
</a>
|
||||
) : null}
|
||||
</section>
|
||||
|
||||
<dl className={cn("grid grid-cols-1 gap-2.5", knownToolCount ? "sm:grid-cols-3" : "sm:grid-cols-2")}>
|
||||
<MetricCard label={tx("settings.mcp.statusLabel", "Status")} value={statusLabel} />
|
||||
<MetricCard label={tx("settings.mcp.transportLabel", "Transport")} value={formatTransport(preset.transport)} />
|
||||
{knownToolCount ? (
|
||||
<MetricCard
|
||||
label={tx("settings.mcp.toolScope", "Tools")}
|
||||
value={`${selectedToolCount} / ${knownToolCount}`}
|
||||
/>
|
||||
) : null}
|
||||
</dl>
|
||||
|
||||
{previewTools.length ? (
|
||||
<section className="rounded-[16px] bg-muted/45 p-4">
|
||||
<h3 className="text-[13px] font-semibold text-foreground">
|
||||
{tx("settings.mcp.toolPreview", "Tools")}
|
||||
</h3>
|
||||
<div className="mt-3 flex flex-wrap gap-1.5">
|
||||
{previewTools.map((tool) => (
|
||||
<code key={tool} className="max-w-full truncate rounded-full bg-background px-2.5 py-1 text-[12.5px] text-foreground/75">
|
||||
{displayToolName(tool, preset.name)}
|
||||
</code>
|
||||
))}
|
||||
{knownToolCount > previewTools.length ? (
|
||||
<span className="rounded-full bg-background px-2.5 py-1 text-[12.5px] text-muted-foreground">
|
||||
+{knownToolCount - previewTools.length}
|
||||
</span>
|
||||
) : null}
|
||||
</div>
|
||||
</section>
|
||||
) : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function ToolsPanel({
|
||||
preset,
|
||||
toolNames,
|
||||
filteredTools,
|
||||
query,
|
||||
selectedTools,
|
||||
selectedToolCount,
|
||||
toolsBusy,
|
||||
testBusy,
|
||||
configuredInstalled,
|
||||
onQueryChange,
|
||||
onToggleTool,
|
||||
onSelectAll,
|
||||
onClear,
|
||||
onTest,
|
||||
onOpenConnection,
|
||||
}: {
|
||||
preset: McpPresetInfo;
|
||||
toolNames: string[];
|
||||
filteredTools: string[];
|
||||
query: string;
|
||||
selectedTools: Set<string>;
|
||||
selectedToolCount: number;
|
||||
toolsBusy: boolean;
|
||||
testBusy: boolean;
|
||||
configuredInstalled: boolean;
|
||||
onQueryChange: (value: string) => void;
|
||||
onToggleTool: (name: string) => void;
|
||||
onSelectAll: () => void;
|
||||
onClear: () => void;
|
||||
onTest: () => void;
|
||||
onOpenConnection: () => void;
|
||||
}) {
|
||||
const { t } = useTranslation();
|
||||
const tx = (key: string, fallback: string) => t(key, { defaultValue: fallback });
|
||||
if (!toolNames.length) {
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
"flex flex-col gap-3 rounded-[16px] border px-4 py-3.5 sm:flex-row sm:items-center sm:justify-between",
|
||||
preset.error ? "border-destructive/25 bg-destructive/5" : "border-border/55 bg-muted/25",
|
||||
)}
|
||||
>
|
||||
<div className="flex min-w-0 items-center gap-3">
|
||||
<div className="grid h-9 w-9 shrink-0 place-items-center rounded-full bg-background text-muted-foreground">
|
||||
{testBusy ? (
|
||||
<Loader2 className="h-4 w-4 animate-spin motion-reduce:animate-none" aria-hidden />
|
||||
) : (
|
||||
<SlidersHorizontal className="h-4 w-4" aria-hidden />
|
||||
)}
|
||||
</div>
|
||||
<p
|
||||
role={preset.error ? "alert" : undefined}
|
||||
className={cn("min-w-0 text-[14px] font-medium", preset.error ? "text-destructive" : "text-foreground")}
|
||||
>
|
||||
{testBusy
|
||||
? tx("common.loading", "Loading…")
|
||||
: preset.error || tx("settings.mcp.noToolsAvailable", "No tools available")}
|
||||
</p>
|
||||
</div>
|
||||
{!testBusy ? (
|
||||
<Button
|
||||
type="button"
|
||||
size="sm"
|
||||
variant="outline"
|
||||
onClick={configuredInstalled ? onTest : onOpenConnection}
|
||||
className="h-9 shrink-0 rounded-full px-4 text-[13px] font-semibold"
|
||||
>
|
||||
{configuredInstalled ? (
|
||||
<RotateCcw className="mr-1.5 h-3.5 w-3.5" aria-hidden />
|
||||
) : (
|
||||
<Server className="mr-1.5 h-3.5 w-3.5" aria-hidden />
|
||||
)}
|
||||
{configuredInstalled
|
||||
? tx("settings.mcp.reloadTools", "Reload tools")
|
||||
: tx("settings.mcp.setup", "Connect")}
|
||||
</Button>
|
||||
) : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<div className="flex flex-col gap-3 sm:flex-row sm:items-center">
|
||||
<label className="relative min-w-0 flex-1">
|
||||
<span className="sr-only">{tx("settings.mcp.searchTools", "Search tools")}</span>
|
||||
<Search className="pointer-events-none absolute left-3.5 top-1/2 h-3.5 w-3.5 -translate-y-1/2 text-muted-foreground" aria-hidden />
|
||||
<Input
|
||||
value={query}
|
||||
onChange={(event) => onQueryChange(event.target.value)}
|
||||
placeholder={tx("settings.mcp.searchToolsPlaceholder", "Search tools")}
|
||||
className="h-10 rounded-full bg-muted/45 pl-9 text-[12.5px]"
|
||||
/>
|
||||
</label>
|
||||
<div className="flex items-center justify-between gap-2 sm:justify-end">
|
||||
<span className="mr-auto text-[13px] tabular-nums text-muted-foreground sm:mr-1">
|
||||
{tx("settings.mcp.selectedCount", "{{count}} selected").replace("{{count}}", String(selectedToolCount))}
|
||||
</span>
|
||||
<Button type="button" size="sm" variant="ghost" disabled={toolsBusy} onClick={onSelectAll} className="h-8 rounded-full px-2.5 text-[12.5px] font-semibold">
|
||||
{tx("settings.mcp.allTools", "All")}
|
||||
</Button>
|
||||
<Button type="button" size="sm" variant="ghost" disabled={toolsBusy} onClick={onClear} className="h-8 rounded-full px-2.5 text-[12.5px] font-semibold text-muted-foreground">
|
||||
{tx("settings.mcp.noTools", "None")}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="overflow-hidden rounded-[16px] border border-border/55">
|
||||
{filteredTools.length ? filteredTools.map((toolName) => {
|
||||
const selected = selectedTools.has(toolName);
|
||||
return (
|
||||
<label
|
||||
key={toolName}
|
||||
className="flex min-h-11 cursor-pointer items-center gap-3 border-b border-border/45 px-3.5 py-2.5 transition-colors last:border-b-0 hover:bg-muted/35 has-[:focus-visible]:ring-2 has-[:focus-visible]:ring-inset has-[:focus-visible]:ring-ring"
|
||||
>
|
||||
<span className="relative h-5 w-5 shrink-0">
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={selected}
|
||||
disabled={toolsBusy}
|
||||
onChange={() => onToggleTool(toolName)}
|
||||
className="peer absolute inset-0 z-10 h-5 w-5 cursor-pointer opacity-0 disabled:cursor-not-allowed"
|
||||
/>
|
||||
<span
|
||||
aria-hidden
|
||||
className={cn(
|
||||
"pointer-events-none absolute inset-0 grid place-items-center rounded-[7px] border transition-colors",
|
||||
selected
|
||||
? "border-foreground bg-foreground text-background"
|
||||
: "border-border bg-background text-transparent",
|
||||
)}
|
||||
>
|
||||
<Check className="h-3 w-3" strokeWidth={2.75} />
|
||||
</span>
|
||||
</span>
|
||||
<code className="min-w-0 flex-1 truncate text-[12.5px] font-medium text-foreground">
|
||||
{displayToolName(toolName, preset.name)}
|
||||
</code>
|
||||
</label>
|
||||
);
|
||||
}) : (
|
||||
<div className="px-4 py-10 text-center text-[12.5px] text-muted-foreground">
|
||||
{tx("settings.mcp.noMatchingTools", "No tools match this search.")}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function ConnectionPanel({
|
||||
preset,
|
||||
values,
|
||||
busy,
|
||||
connectBusy,
|
||||
removeBusy,
|
||||
requiredFieldsComplete,
|
||||
onFieldChange,
|
||||
onConnect,
|
||||
onRemove,
|
||||
}: {
|
||||
preset: McpPresetInfo;
|
||||
values: Record<string, string>;
|
||||
busy: boolean;
|
||||
connectBusy: boolean;
|
||||
removeBusy: boolean;
|
||||
requiredFieldsComplete: boolean;
|
||||
onFieldChange: (presetName: string, fieldName: string, value: string) => void;
|
||||
onConnect: () => void;
|
||||
onRemove: () => void;
|
||||
}) {
|
||||
const { t } = useTranslation();
|
||||
const tx = (key: string, fallback: string) => t(key, { defaultValue: fallback });
|
||||
const configuredInstalled = preset.installed && preset.configured;
|
||||
const hasFields = preset.required_fields.length > 0;
|
||||
const authentication = preset.auth === "oauth"
|
||||
? "OAuth"
|
||||
: hasFields
|
||||
? tx("settings.mcp.credentials", "Credentials")
|
||||
: tx("settings.mcp.none", "None");
|
||||
const connectionLabel = preset.transport === "stdio"
|
||||
? tx("settings.mcp.command", "Command")
|
||||
: tx("settings.mcp.endpointLabel", "Endpoint");
|
||||
const connectLabel = configuredInstalled
|
||||
? tx("settings.mcp.reconnect", "Reconnect")
|
||||
: tx("settings.mcp.setup", "Connect");
|
||||
return (
|
||||
<div className="space-y-5">
|
||||
<section aria-labelledby={`mcp-connection-${preset.name}`}>
|
||||
<h3 id={`mcp-connection-${preset.name}`} className="sr-only">
|
||||
{tx("settings.mcp.connectionDetails", "Connection details")}
|
||||
</h3>
|
||||
<div className="rounded-[16px] bg-muted/40 px-4 py-3.5">
|
||||
{preset.connection_summary ? (
|
||||
<div className="min-w-0">
|
||||
<p className="text-[12.5px] font-medium text-muted-foreground">{connectionLabel}</p>
|
||||
<code className="mt-1 block break-all text-[12.5px] leading-5 text-foreground">
|
||||
{preset.connection_summary}
|
||||
</code>
|
||||
</div>
|
||||
) : null}
|
||||
<div className={cn(
|
||||
"flex flex-wrap items-center gap-x-2 gap-y-1 text-[12.5px] text-muted-foreground",
|
||||
preset.connection_summary && "mt-3 border-t border-border/45 pt-3",
|
||||
)}>
|
||||
<span>{formatTransport(preset.transport)}</span>
|
||||
<span aria-hidden>·</span>
|
||||
<span>{authentication}</span>
|
||||
<div className="ml-auto flex items-center gap-1.5">
|
||||
{preset.docs_url ? (
|
||||
<a
|
||||
href={preset.docs_url}
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="inline-flex min-h-8 items-center gap-1 rounded-full px-2 font-semibold text-foreground/65 transition-colors hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
|
||||
>
|
||||
{tx("settings.mcp.openDocs", "Open docs")}
|
||||
<ExternalLink className="h-3 w-3" aria-hidden />
|
||||
</a>
|
||||
) : null}
|
||||
{configuredInstalled && preset.install_supported ? (
|
||||
<Button
|
||||
type="button"
|
||||
size="sm"
|
||||
variant="outline"
|
||||
disabled={busy}
|
||||
onClick={onConnect}
|
||||
className="h-8 rounded-full bg-background px-3 text-[12.5px] font-semibold"
|
||||
>
|
||||
{connectBusy ? (
|
||||
<Loader2 className="mr-1.5 h-3.5 w-3.5 animate-spin motion-reduce:animate-none" aria-hidden />
|
||||
) : (
|
||||
<RotateCcw className="mr-1.5 h-3.5 w-3.5" aria-hidden />
|
||||
)}
|
||||
{connectLabel}
|
||||
</Button>
|
||||
) : null}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{preset.error ? (
|
||||
<div role="alert" className="rounded-[14px] bg-destructive/10 px-3.5 py-3 text-[12.5px] leading-5 text-destructive">
|
||||
{preset.error}
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
{hasFields ? (
|
||||
<section>
|
||||
<h3 className="text-[13px] font-semibold text-foreground">
|
||||
{tx("settings.mcp.credentials", "Credentials")}
|
||||
</h3>
|
||||
<div className="mt-3 grid gap-3">
|
||||
{preset.required_fields.map((field) => {
|
||||
const inputId = `mcp-manage-${preset.name}-${field.name}`;
|
||||
return (
|
||||
<label key={field.name} htmlFor={inputId} className="min-w-0">
|
||||
<span className="mb-1.5 flex items-center gap-1 text-[12.5px] font-medium text-muted-foreground">
|
||||
{field.label}
|
||||
{field.configured ? (
|
||||
<span className="font-normal text-emerald-600 dark:text-emerald-300">
|
||||
· {tx("settings.mcp.configured", "configured")}
|
||||
</span>
|
||||
) : null}
|
||||
</span>
|
||||
<Input
|
||||
id={inputId}
|
||||
type={field.secret ? "password" : "text"}
|
||||
value={values[field.name] ?? ""}
|
||||
onChange={(event) => onFieldChange(preset.name, field.name, event.target.value)}
|
||||
placeholder={field.configured ? tx("settings.mcp.keepExisting", "Leave blank to keep existing") : field.placeholder}
|
||||
className="h-10 rounded-full bg-muted/35 text-[12.5px]"
|
||||
/>
|
||||
</label>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</section>
|
||||
) : null}
|
||||
|
||||
{!configuredInstalled && preset.install_supported ? (
|
||||
<div className="flex justify-end">
|
||||
<Button
|
||||
type="button"
|
||||
disabled={busy || !requiredFieldsComplete}
|
||||
onClick={onConnect}
|
||||
className="h-9 rounded-full px-4 text-[13px] font-semibold"
|
||||
>
|
||||
{connectBusy ? (
|
||||
<Loader2 className="mr-1.5 h-3.5 w-3.5 animate-spin motion-reduce:animate-none" aria-hidden />
|
||||
) : (
|
||||
<Server className="mr-1.5 h-3.5 w-3.5" aria-hidden />
|
||||
)}
|
||||
{connectLabel}
|
||||
</Button>
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
{preset.installed && preset.enabled === undefined ? (
|
||||
<section className="pt-1">
|
||||
<Button
|
||||
type="button"
|
||||
size="sm"
|
||||
variant="ghost"
|
||||
disabled={busy}
|
||||
onClick={onRemove}
|
||||
className="h-9 rounded-full px-3 text-[12.5px] font-semibold text-destructive hover:bg-destructive/10 hover:text-destructive"
|
||||
>
|
||||
{removeBusy ? (
|
||||
<Loader2 className="mr-1.5 h-3.5 w-3.5 animate-spin motion-reduce:animate-none" aria-hidden />
|
||||
) : (
|
||||
<Trash2 className="mr-1.5 h-3.5 w-3.5" aria-hidden />
|
||||
)}
|
||||
{tx("settings.mcp.dangerZone", "Remove connection")}
|
||||
</Button>
|
||||
</section>
|
||||
) : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function MetricCard({ label, value }: { label: string; value: string }) {
|
||||
return (
|
||||
<div className="min-w-0 rounded-[14px] bg-muted/45 px-3.5 py-3">
|
||||
<dt className="text-[12px] font-medium text-muted-foreground">{label}</dt>
|
||||
<dd className="mt-1 truncate text-[14px] font-semibold text-foreground">{value}</dd>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function StatusPill({ children, tone }: { children: ReactNode; tone: "success" | "warning" | "neutral" }) {
|
||||
return (
|
||||
<span
|
||||
className={cn(
|
||||
"inline-flex shrink-0 items-center gap-1.5 rounded-full px-2.5 py-1 text-xs font-semibold",
|
||||
tone === "success" && "bg-emerald-500/10 text-emerald-700 dark:text-emerald-300",
|
||||
tone === "warning" && "bg-destructive/10 text-destructive",
|
||||
tone === "neutral" && "bg-muted text-muted-foreground",
|
||||
)}
|
||||
>
|
||||
<span className={cn("h-1.5 w-1.5 rounded-full bg-current", tone === "neutral" && "opacity-55")} aria-hidden />
|
||||
{children}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
function normalizeTools(tools: string[]): string[] {
|
||||
return tools.includes("*") ? ["*"] : [...tools].sort((left, right) => left.localeCompare(right));
|
||||
}
|
||||
|
||||
function displayToolName(toolName: string, serverName: string): string {
|
||||
const wrappedPrefix = `mcp_${serverName}_`;
|
||||
return toolName.startsWith(wrappedPrefix) ? toolName.slice(wrappedPrefix.length) : toolName;
|
||||
}
|
||||
|
||||
function formatTransport(transport: string): string {
|
||||
if (transport === "streamableHttp") return "Streamable HTTP";
|
||||
if (transport === "stdio") return "STDIO";
|
||||
if (transport === "sse") return "SSE";
|
||||
return transport || "MCP";
|
||||
}
|
||||
Reference in New Issue
Block a user