list_comments

Pack: figma · Endpoint: https://gateway.pipeworx.io/figma/mcp

List comments on a Figma design file. Returns each comment’s id, message, author handle, created time, and resolved time. Use to review feedback and discussion on a design.

Parameters

NameTypeRequiredDescription
file_keystringyesThe Figma file key (the segment after /file/ or /design/ in a Figma URL).

Example call

Arguments

{
  "file_key": "abc123xyz"
}

curl

curl -X POST https://gateway.pipeworx.io/figma/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_comments","arguments":{"file_key":"abc123xyz"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_comments', {
  "file_key": "abc123xyz"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "figma": {
      "url": "https://gateway.pipeworx.io/figma/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026