Loading...
Loading...
Guidelines for integrating Figma designs with development workflows using MCP servers and best practices
npx skill4agent add mindrally/skills figma-integration// Fetch file data
const file = await figma.getFile(fileKey);
// Get specific node
const node = await figma.getNode(fileKey, nodeId);
// Export images
const images = await figma.getImages(fileKey, {
ids: [nodeId],
format: 'svg',
scale: 2
});