'use client' import React from 'react' import { useTranslation } from 'react-i18next' import Textarea from '@/app/components/base/textarea' type Props = { data?: any value: string onChange: (value: string) => void } const MCPServerParamItem = ({ data, value, onChange, }: Props) => { const { t } = useTranslation() return (