asdesigned for VS Code
io.github.maher-reven/asdesigned
Diff a rendered UI element against its Figma source and get every drifted property with its delta.
client:VS Code
transport:stdio
runtime:npm
Install asdesigned in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "figma-token",
"description": "FIGMA_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "asdesigned-browser",
"description": "ASDESIGNED_BROWSER",
"password": true
}
],
"servers": {
"asdesigned": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"asdesigned"
],
"env": {
"FIGMA_TOKEN": "${input:figma-token}",
"ASDESIGNED_BROWSER": "${input:asdesigned-browser}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs