import { Button } from "@/components/ui/button"; import { Server } from "lucide-react"; import { ArrowUpRight } from "lucide-react"; const MCP_SERVERS_DOCS_URL = "https://docs.getbifrost.ai/features/mcp/overview"; interface MCPServersEmptyStateProps { onAddClick: () => void; canCreate?: boolean; } export function MCPServersEmptyState({ onAddClick, canCreate = true }: MCPServersEmptyStateProps) { return (