import { dmSans125ClassName, dmSansClassName } from "@/lib/fonts" import { Dialog, DialogContent, DialogFooter } from "@repo/ui/components/dialog" import { cn } from "@lib/utils" import * as DialogPrimitive from "@radix-ui/react-dialog" import { XIcon } from "lucide-react" import { Button } from "@ui/components/button" import { MCPSteps } from "./mcp-detail-view" import { SpaceSelector } from "../space-selector" import { useProject } from "@/stores" import { useProjectMutations } from "@/hooks/use-project-mutations" export function MCPModal({ isOpen, onClose, }: { isOpen: boolean onClose: () => void }) { const { selectedProject } = useProject() const { switchProject } = useProjectMutations() return ( !open && onClose()}>

Connect your AI to Supermemory

Let your AI create and use your memories via MCP.

Close
) }