get_node_info
Retrieve detailed information about a specific node in Figma using its node ID, enabling programmatic access to design elements via the Talk to Figma MCP server.
Instructions
Get detailed information about a specific node in Figma
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeId | Yes | The ID of the node to get information about |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"nodeId": {
"description": "The ID of the node to get information about",
"type": "string"
}
},
"required": [
"nodeId"
],
"type": "object"
}