get_fill_and_stroke
Retrieve fill and stroke colors along with stroke weight for specific Figma nodes. Use this tool to extract design details for one or multiple nodes in real-time via the Conduit MCP server.
Instructions
Gets fill and/or stroke color(s) and stroke weight for one or more nodes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeId | No | The unique Figma node ID to query. Provide either nodeId or nodeIds, not both. | |
nodeIds | No | An array of Figma node IDs to query. Provide either nodeId or nodeIds, not both. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"nodeId": {
"description": "The unique Figma node ID to query. Provide either nodeId or nodeIds, not both.",
"type": "string"
},
"nodeIds": {
"description": "An array of Figma node IDs to query. Provide either nodeId or nodeIds, not both.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}