Skip to main content
Glama

set_paragraph_spacing

Adjust paragraph spacing in Figma text nodes to control vertical spacing between paragraphs for improved readability and layout design.

Instructions

Set the paragraph spacing of a text node in Figma

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodeIdYesThe ID of the text node to modify
paragraphSpacingYesParagraph spacing value in pixels

Implementation Reference

  • The handler function that executes the set_paragraph_spacing tool logic by sending the command to Figma via websocket and returning formatted success or error response.
      async ({ nodeId, paragraphSpacing }) => {
        try {
          const result = await sendCommandToFigma("set_paragraph_spacing", {
            nodeId,
            paragraphSpacing
          });
          const typedResult = result as { name: string, paragraphSpacing: number };
          return {
            content: [
              {
                type: "text",
                text: `Updated paragraph spacing of node "${typedResult.name}" to ${typedResult.paragraphSpacing}px`
              }
            ]
          };
        } catch (error) {
          return {
            content: [
              {
                type: "text",
                text: `Error setting paragraph spacing: ${error instanceof Error ? error.message : String(error)}`
              }
            ]
          };
        }
      }
    );
  • Input schema using Zod for validating nodeId (string) and paragraphSpacing (number) parameters.
    {
      nodeId: z.string().describe("The ID of the text node to modify"),
      paragraphSpacing: z.number().describe("Paragraph spacing value in pixels"),
    },
  • Registers the set_paragraph_spacing tool on the MCP server with description, input schema, and handler function.
    server.tool(
      "set_paragraph_spacing",
      "Set the paragraph spacing of a text node in Figma",
      {
        nodeId: z.string().describe("The ID of the text node to modify"),
        paragraphSpacing: z.number().describe("Paragraph spacing value in pixels"),
      },
      async ({ nodeId, paragraphSpacing }) => {
        try {
          const result = await sendCommandToFigma("set_paragraph_spacing", {
            nodeId,
            paragraphSpacing
          });
          const typedResult = result as { name: string, paragraphSpacing: number };
          return {
            content: [
              {
                type: "text",
                text: `Updated paragraph spacing of node "${typedResult.name}" to ${typedResult.paragraphSpacing}px`
              }
            ]
          };
        } catch (error) {
          return {
            content: [
              {
                type: "text",
                text: `Error setting paragraph spacing: ${error instanceof Error ? error.message : String(error)}`
              }
            ]
          };
        }
      }
    );
  • Calls registerTextTools which includes the registration of set_paragraph_spacing among other text tools.
    registerTextTools(server);
  • Top-level call to registerTools which triggers registration of all tools including set_paragraph_spacing.
    registerTools(server);

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/agenisea/cc-fig-mcp'

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