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 (

MCP servers connect tools and context to the gateway

Add MCP servers to expose tools and resources to the MCP Tools endpoint. Configure connection type, auth, and which tools to enable.
); }