figma-restoration-mcp-vue-tools
Version:
Professional Figma Component Restoration Kit - MCP tools with snapDOM-powered high-quality screenshots, intelligent shadow detection, and advanced diff analysis for Vue component restoration. Features enhanced figma_compare with color-coded region analysi
26 lines (25 loc) • 851 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MCP Vue Tools - Figma Restoration Kit</title>
<script>
// Pre-load snapdom for screenshot functionality
window.addEventListener('DOMContentLoaded', async () => {
try {
const module = await import('@zumer/snapdom');
window.snapdom = module.snapdom || module.default;
console.log('snapdom loaded successfully');
} catch (error) {
console.warn('snapdom preload failed, will try dynamic import later:', error);
}
});
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>