get_file_nodes
Pack: figma · Endpoint: https://gateway.pipeworx.io/figma/mcp
Get specific nodes from a Figma design file by their node ids. Returns a compact map of node id to { name, type }. Use to inspect particular frames, components, or layers within a design file.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file_key | string | yes | The Figma file key (the segment after /file/ or /design/ in a Figma URL). |
node_ids | string | yes | Comma-separated list of node ids to retrieve (e.g. “1:2,1:3”). |
Example call
Arguments
{
"file_key": "abc123xyz",
"node_ids": "1:2,1:3"
}
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":"get_file_nodes","arguments":{"file_key":"abc123xyz","node_ids":"1:2,1:3"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_file_nodes', {
"file_key": "abc123xyz",
"node_ids": "1:2,1:3"
});
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.