> For the complete documentation index, see [llms.txt](https://notara.gitbook.io/notara-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notara.gitbook.io/notara-docs/connectors/figma.md).

# Figma

The Figma connector gives the agent read access to your Figma files — structure, text content, comments, and rendered images.

## What It Enables

| Tool                 | Capability | Description                                                             |
| -------------------- | ---------- | ----------------------------------------------------------------------- |
| `get_file`           | `read`     | Read a file's page and frame structure, including text content on nodes |
| `get_team_projects`  | `read`     | List the projects (folders) in a Figma team                             |
| `list_project_files` | `read`     | List the files inside a specific project                                |
| `get_file_comments`  | `read`     | Read design review comments and feedback threads on a file              |
| `get_image_renders`  | `read`     | Render specific nodes as images and return URLs                         |

All tools are read-only. The file key is the segment after `/file/` or `/design/` in any Figma URL.

## Setup

**Required:** Figma Personal Access Token.

**Where to find it:** [figma.com → Settings → Security → Personal access tokens](https://www.figma.com/settings).

1. In the Notara dashboard, go to **Tools**.
2. Click the **Figma** tile.
3. In Figma, go to **Account Settings → Security** and click **Generate new token**.
4. Give it a name (e.g. "Notara") and copy the token.
5. Paste the token into the Figma connector field and click **Verify & Save**.

Optionally provide a default Team ID (from your team's URL) so the agent can list projects without needing you to supply it each time.

Your API key is encrypted at rest with AES-256-GCM.

## Example Prompts

> "What are the top-level frames in the design file at figma.com/design/abc123?"

> "Summarize the open review comments on our onboarding file."

> "List all files in the Marketing project."


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://notara.gitbook.io/notara-docs/connectors/figma.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
