import { Alert, Button, Dialog, DialogActions, DialogContent, DialogTitle, } from "@mui/material"; import React from "react"; interface McpConfigurationWarningDialogProps { open: boolean; onClose: () => void; onConfirm: () => void; } export const McpConfigurationWarningDialog: React.FC< McpConfigurationWarningDialogProps > = ({ open, onClose, onConfirm }) => { return ( Warning Meta Agents Research Environments is a research tool with no security features. It does not implement any protection against prompt injection with non-simulated MCP apps. Users are responsible for verifying the safety of custom MCP configurations. ); };