set_selection
Selects specific Figma nodes by their IDs in real-time using the Conduit MCP server, enabling precise design manipulation for AI-driven workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputSchema | Yes | Input schema for the set_selection command. Provide either 'nodeId' or 'nodeIds'. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputSchema": {
"additionalProperties": false,
"description": "Input schema for the set_selection command. Provide either 'nodeId' or 'nodeIds'.",
"properties": {
"nodeId": {
"description": "A single Figma node ID to select.",
"type": "string"
},
"nodeIds": {
"description": "An array of Figma node IDs to select.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"inputSchema"
],
"type": "object"
}