-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
37 lines (37 loc) · 1.24 KB
/
Copy pathserver.json
File metadata and controls
37 lines (37 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Maher-Reven/asdesigned",
"description": "Diff a rendered UI element against its Figma source and get every drifted property with its delta.",
"repository": {
"url": "https://github.com/Maher-Reven/asdesigned",
"source": "github"
},
"version": "0.2.0",
"packages": [
{
"registryType": "npm",
"identifier": "asdesigned",
"version": "0.2.0",
"transport": { "type": "stdio" },
"runtimeHint": "npx",
"packageArguments": [
{ "type": "positional", "value": "asdesigned-mcp", "description": "Start the MCP server (the package's second binary)" }
],
"environmentVariables": [
{
"name": "FIGMA_TOKEN",
"description": "Figma personal access token with 'file content: read' scope",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "ASDESIGNED_BROWSER",
"description": "Optional path to an existing Chrome/Chromium binary (otherwise run `npx playwright install chromium` once)",
"isRequired": false,
"format": "string"
}
]
}
]
}