import { IMCPTool } from '@/interfaces/database/mcp'; export type McpToolCardProps = { data: IMCPTool; }; export function McpToolCard({ data }: McpToolCardProps) { return (
{data.name}
{data.description}
); }