# figma-vault (npm · figma-vault)

Figma designs pulled once into a local vault; AI agents read them offline with no rate limits

- Trust score: 72/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-25

## Components

- npm · `figma-vault`: 72/100 (this document), [markdown](https://verifymcp.io/servers/nbhey-figma-vault/figma-vault.md), [page](https://verifymcp.io/servers/nbhey-figma-vault/figma-vault)

## Channel facts

- Registry: `npm`
- Package: `figma-vault`
- Version: `0.1.4`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-25.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 31 of 96 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 0 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 79/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 671 tokens (~111/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 6 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 7 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the figma-vault MCP server?

figma-vault runs locally as an npm package, launched with npx -y figma-vault. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add nbhey-figma-vault -- npx -y figma-vault
```

### Cursor

```json
{
  "mcpServers": {
    "nbhey-figma-vault": {
      "command": "npx",
      "args": [
        "-y",
        "figma-vault"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "nbhey-figma-vault": {
      "command": "npx",
      "args": [
        "-y",
        "figma-vault"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add nbhey-figma-vault -- npx -y figma-vault
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "nbhey-figma-vault": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "figma-vault"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add nbhey-figma-vault --command npx --arg -y --arg figma-vault
```

### Hermes

```yaml
mcp_servers:
  nbhey-figma-vault:
    command: "npx"
    args: ["-y", "figma-vault"]
```

### Netclaw

```json
{
  "McpServers": {
    "nbhey-figma-vault": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "figma-vault"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add nbhey-figma-vault -t stdio -c npx -a -y figma-vault
```

### Other

```json
{
  "mcpServers": {
    "nbhey-figma-vault": {
      "command": "npx",
      "args": [
        "-y",
        "figma-vault"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-25 (score 72, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-09-24 (score 71, 0)

- [security regression] Tool safety: pass → unverified
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Stability: unverified → 0.03
- [functional] First check of Schema quality: unverified
- [functional] Package version: 0.1.3 → 0.1.4

### 2026-09-23 (score 71)

First indexed and scored.

## MCP tools (6)

### `vault_list` (~26 tokens)

List designs

Every exported document: docId, file and node name, export time, node count.

### `vault_get_doc` (~125 tokens)

Whole document

Normalized design tree together with its tokens. maxDepth cuts the tree by depth (0 — the root only); truncated nodes get childrenOmitted. Hidden nodes are not returned without includeHidden.

Input parameters:

- `docId` (string, required): Document id as returned by vault_list
- `includeHidden` (boolean): Also return nodes hidden in Figma (hidden: true) — optional component slots. Defaults to false: building the screen as it looks does not need them.
- `maxDepth` (integer): How many levels below the root to return. Omit for the whole tree.

### `vault_get_node` (~103 tokens)

Node subtree

A node by id with all of its descendants. Use it instead of pulling the whole document.

Input parameters:

- `docId` (string, required): Document id as returned by vault_list
- `includeHidden` (boolean): Also return nodes hidden in Figma (hidden: true) — optional component slots. Defaults to false: building the screen as it looks does not need them.
- `nodeId` (string, required): Node id in Figma format, for example 1:42

### `vault_search` (~120 tokens)

Search the design

Nodes whose name or text content contains the substring (case-insensitive). Returns id, type and the path from the root.

Input parameters:

- `docId` (string, required): Document id as returned by vault_list
- `includeHidden` (boolean): Also return nodes hidden in Figma (hidden: true) — optional component slots. Defaults to false: building the screen as it looks does not need them.
- `limit` (integer): Maximum number of hits, 50 by default
- `query` (string, required): Substring to look for in name and text.content

### `vault_get_tokens` (~42 tokens)

Design system tokens

Colors, text styles and effects of the document. Nodes refer to them via text.token.

Input parameters:

- `docId` (string, required): Document id as returned by vault_list

### `vault_get_asset` (~78 tokens)

Design asset

An image from the document by the path from node.asset.path (for example assets/logo.svg) or screenshot.png. Raster comes back as an image, svg as its source.

Input parameters:

- `docId` (string, required): Document id as returned by vault_list
- `path` (string, required): Path inside the document directory, for example assets/hero.png

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/nbhey-figma-vault/figma-vault#diagnostics

## Score history

- 2026-09-25: 72
- 2026-09-24: 71
- 2026-09-23: 71

## Common questions

### What is the figma-vault MCP server?

figma-vault is an MCP server listed in the public MCP registry as io.github.NBhey/figma-vault. Figma designs pulled once into a local vault; AI agents read them offline with no rate limits. This page covers its npm package (figma-vault).

### Is the figma-vault MCP server safe to use?

figma-vault scores 72 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 25 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the figma-vault MCP server expose?

figma-vault exposes 6 tools: vault_list, vault_get_doc, vault_get_node, vault_search, vault_get_tokens, vault_get_asset. Their descriptions and schemas cost roughly 494 tokens of context every time the server is loaded.

### Is the figma-vault MCP server still maintained?

figma-vault is still listed as active in the MCP registry. We last reached this channel on 25 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the figma-vault MCP server under?

figma-vault declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/figma-vault
- Socket report: https://socket.dev/npm/package/figma-vault
- Repository: https://github.com/NBhey/figma-vault
- Changelog RSS feed: https://verifymcp.io/servers/nbhey-figma-vault/figma-vault.xml
- Changelog JSON feed: https://verifymcp.io/servers/nbhey-figma-vault/figma-vault.json
- HTML version of this page: https://verifymcp.io/servers/nbhey-figma-vault/figma-vault
