import React from 'react';
import { Skeleton } from '@librechat/client';
export default function MCPPanelSkeleton() {
return (
{[1, 2].map((serverIdx) => (
{/* Server Name */}
{[1, 2].map((varIdx) => (
{/* Variable Title */}
{/* Input Field */}
{/* Description */}
))}
))}
);
}