Skip to main content
Glama
andreycretsu

Cursor Talk to Figma MCP

by andreycretsu

delete_node

Remove a specific element from Figma designs by providing its node ID, enabling automated cleanup and modification of design files.

Instructions

Delete a node from Figma

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodeIdYesThe ID of the node to delete

Implementation Reference

  • The complete implementation of the 'delete_node' tool, including registration, input schema, and handler function. The handler sends a 'delete_node' command to the Figma plugin and handles the response.
    server.tool(
      "delete_node",
      "Delete a node from Figma",
      {
        nodeId: z.string().describe("The ID of the node to delete"),
      },
      async ({ nodeId }) => {
        try {
          await sendCommandToFigma("delete_node", { nodeId });
          return {
            content: [
              {
                type: "text",
                text: `Deleted node with ID: ${nodeId}`,
              },
            ],
          };
        } catch (error) {
          return {
            content: [
              {
                type: "text",
                text: `Error deleting node: ${error instanceof Error ? error.message : String(error)
                  }`,
              },
            ],
          };
        }
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/andreycretsu/cursor-talk-to-figma-mcp-main'

If you have feedback or need assistance with the MCP directory API, please join our Discord server