get_file
Pack: figma · Endpoint: https://gateway.pipeworx.io/figma/mcp
Get a compact summary of a Figma design file by its file key: name, last modified time, version, editor type, role, thumbnail URL, and the list of top-level pages (id, name, type, child count). Use to understand the structure of a Figma design file without fetching the full node tree.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file_key | string | yes | The Figma file key (the segment after /file/ or /design/ in a Figma URL). |
depth | number | no | How many levels of the document tree to traverse (default 2). Lower values return less data. |
Example call
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":"get_file","arguments":{}}}'
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.