"use client"; import { Cable } from "lucide-react"; import { AgentSetupTabs } from "@/components/mcp/agent-setup-tabs"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import { BACKEND_URL } from "@/lib/env-config"; import { cn } from "@/lib/utils"; /** * Sidebar-footer button that opens the MCP setup guide: pick an agent * (Claude Code, Codex, OpenCode, ...), copy its config, done. */ export function ConnectAgentDialog({ className }: { className?: string }) { return ( Connect your AI Agent Connect to Claude Code, Codex, OpenCode… The SurfSense MCP server gives any coding agent these scrapers and your knowledge base as native tools. You need an API key (create one under API Keys) — then pick your agent and paste its config. ); }