import React from "react"; import { useTranslation } from "react-i18next"; import { MCPSSEServer } from "#/types/settings"; import { I18nKey } from "#/i18n/declaration"; interface MCPSSEServersProps { servers: (string | MCPSSEServer)[]; } export function MCPSSEServers({ servers }: MCPSSEServersProps) { const { t } = useTranslation(); return (