'use client' import { Textarea } from '@langgenius/dify-ui/textarea' import * as React from 'react' import { useTranslation } from 'react-i18next' type Props = Readonly<{ data?: any value: string onChange: (value: string) => void }> const MCPServerParamItem = ({ data, value, onChange }: Props) => { const { t } = useTranslation() return (
{data.label}
ยท
{data.variable}
{data.type}