Figma Console (mp3wizard) MCP Server

@mp3wizard/figma-console-mcp npm v1.40.1

Published by @mp3wizard — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

The most comprehensive MCP server for Figma — design tokens, variables, components, write tools, version history diff, accessibility audits, FigJam, Slides, and more. Local (WebSocket Desktop Bridge plugin) and Cloudflare Workers (paired + remote) modes.

Trust grade
D
67/100
Last scanned get badge →
Trust
D · 67/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
Critical
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
D Why this grade threat 78 − adoption risk = 67/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 21.7 = 78. What the published surface and source actually contain:

PointsWhat was foundCategory
−15.4 Assembled command execution and dynamic evaluation in the same server MTC-SRC-011 injection
−6.3 Untrusted input concatenated into a command sink MTC-SRC-009 injection

2. Client adoption risk — 78 − 11 = 67. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−10 capability blast radius (critical) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 7

critical Completed toxic-flow trifecta across toolsMTC-FLOW-002

This server (without client built-ins) exposes a complete data-exfiltration chain: figma_get_file_at_version → figma_get_token_values → figma_export_tokens. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.

Fix: Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.

Location: flow figma_get_file_at_version → figma_get_token_values → figma_export_tokens

high Dynamic evaluation of a non-literal value (figma-desktop-bridge/code.js)MTC-SRC-010

In the server's implementation (`figma-desktop-bridge/code.js:519`): Evaluating a runtime value as code (rather than a fixed literal) executes whatever reaches it — a direct RCE primitive, and almost never necessary in legitimate code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: E codePromise = eval(wrappedCode); } catch (syntaxError) { // Log the actual syntax error message

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server figma-desktop-bridge/code.js

high Assembled command execution and dynamic evaluation in the same serverMTC-SRC-011

The implementation both builds shell commands out of runtime values (`dist/core/port-discovery.js`) and evaluates runtime values as code (`figma-desktop-bridge/code.js`). Each is a separate arbitrary-execution primitive; a server exposing both gives anything that reaches either one a direct path to running attacker-chosen code. These two sinks are in different files — confirm whether they are actually connected, or are unrelated code paths (e.g. a vendored bundle plus a CLI wrapper).

Fix: Remove the dynamic eval, and pass command arguments as an argv array instead of building a shell string. If both are genuinely required, constrain and validate every value that can reach them.

Location: server implementation

high Dynamic code execution in server code (figma-desktop-bridge/code.js)MTC-SRC-001

In the server's implementation (`figma-desktop-bridge/code.js:519`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: E codePromise = eval(wrappedCode); } catch (syntaxError) { // Log the actual syntax error message

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server figma-desktop-bridge/code.js

high Shell/command execution in server code (dist/core/history/git-history.js)MTC-SRC-002

In the server's implementation (`dist/core/history/git-history.js:124`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ckIgnore: true */ "node:child_process"); const execFile = mod.execFile; if (typeof execFile !== "function") {

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/core/history/git-history.js

high Shell/command execution in server code (dist/core/port-discovery.js)MTC-SRC-002

In the server's implementation (`dist/core/port-discovery.js:35`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: e, execFileSync } from 'child_process'; import { promisify } from 'util'; import { createChildLogger } from './logger.js

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/core/port-discovery.js

medium Untrusted input concatenated into a command sink (dist/core/port-discovery.js)MTC-SRC-009

In the server's implementation (`dist/core/port-discovery.js:388`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: '); const out = execSync(`ps -p ${pid} -o etime= 2>/dev/null`, { encoding: 'utf-8', time

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/core/port-discovery.js

Tools 121

Each tool and what it can reach — statically extracted from the published source.

  • figma_export_tokensnetwork egress
  • figma_get_file_at_versioningests untrusted input
  • figma_get_token_valuesreads sensitive data
  • figjam_auto_arrangeno sensitive capability
  • figjam_create_code_blockno sensitive capability
  • figjam_create_connectorno sensitive capability
  • figjam_create_sectionno sensitive capability
  • figjam_create_shape_with_textno sensitive capability
  • figjam_create_stickiesno sensitive capability
  • figjam_create_stickyno sensitive capability
Show 111 more tools ↓
  • figjam_create_tableno sensitive capability
  • figjam_get_board_contentsno sensitive capability
  • figjam_get_connectionsno sensitive capability
  • figma_add_component_propertyno sensitive capability
  • figma_add_modeno sensitive capability
  • figma_add_shape_to_slideno sensitive capability
  • figma_add_slot_propertyno sensitive capability
  • figma_add_text_to_slideno sensitive capability
  • figma_analyze_component_setno sensitive capability
  • figma_append_to_slotno sensitive capability
  • figma_arrange_component_setno sensitive capability
  • figma_audit_component_accessibilityno sensitive capability
  • figma_audit_design_system_reportno sensitive capability
  • figma_batch_create_variablesno sensitive capability
  • figma_batch_update_variablesno sensitive capability
  • figma_blame_nodeno sensitive capability
  • figma_capture_screenshotno sensitive capability
  • figma_check_design_parityno sensitive capability
  • figma_clear_consoleno sensitive capability
  • figma_clone_nodeno sensitive capability
  • figma_create_childno sensitive capability
  • figma_create_component_setno sensitive capability
  • figma_create_slideno sensitive capability
  • figma_create_slotno sensitive capability
  • figma_create_variableno sensitive capability
  • figma_create_variable_collectionno sensitive capability
  • figma_delete_commentno sensitive capability
  • figma_delete_component_propertyno sensitive capability
  • figma_delete_nodeno sensitive capability
  • figma_delete_slideno sensitive capability
  • figma_delete_variableno sensitive capability
  • figma_delete_variable_collectionno sensitive capability
  • figma_diagnoseno sensitive capability
  • figma_diff_versionsno sensitive capability
  • figma_ds_analyzeno sensitive capability
  • figma_ds_extract_componentno sensitive capability
  • figma_ds_extract_tokensno sensitive capability
  • figma_ds_scaffoldno sensitive capability
  • figma_ds_setup_storybookno sensitive capability
  • figma_ds_statusno sensitive capability
  • figma_ds_verifyno sensitive capability
  • figma_duplicate_slideno sensitive capability
  • figma_edit_component_propertyno sensitive capability
  • figma_executeno sensitive capability
  • figma_execute_across_filesno sensitive capability
  • figma_focus_slideno sensitive capability
  • figma_generate_changelogno sensitive capability
  • figma_generate_component_docno sensitive capability
  • figma_get_annotation_categoriesno sensitive capability
  • figma_get_annotationsno sensitive capability
  • figma_get_changes_since_versionno sensitive capability
  • figma_get_commentsno sensitive capability
  • figma_get_componentno sensitive capability
  • figma_get_component_detailsno sensitive capability
  • figma_get_component_for_developmentno sensitive capability
  • figma_get_component_for_development_deepno sensitive capability
  • figma_get_component_imageno sensitive capability
  • figma_get_console_logsno sensitive capability
  • figma_get_design_changesno sensitive capability
  • figma_get_design_system_kitno sensitive capability
  • figma_get_design_system_summaryno sensitive capability
  • figma_get_file_datano sensitive capability
  • figma_get_file_for_pluginno sensitive capability
  • figma_get_file_versionsno sensitive capability
  • figma_get_focused_slideno sensitive capability
  • figma_get_library_component_by_keyno sensitive capability
  • figma_get_library_componentsno sensitive capability
  • figma_get_library_variablesno sensitive capability
  • figma_get_selectionno sensitive capability
  • figma_get_slide_contentno sensitive capability
  • figma_get_slide_gridno sensitive capability
  • figma_get_slide_transitionno sensitive capability
  • figma_get_slotsno sensitive capability
  • figma_get_statusno sensitive capability
  • figma_get_stylesno sensitive capability
  • figma_get_text_stylesno sensitive capability
  • figma_get_variablesno sensitive capability
  • figma_import_library_variableno sensitive capability
  • figma_import_tokensno sensitive capability
  • figma_instantiate_componentno sensitive capability
  • figma_lint_designno sensitive capability
  • figma_list_open_filesno sensitive capability
  • figma_list_slidesno sensitive capability
  • figma_move_nodeno sensitive capability
  • figma_navigateno sensitive capability
  • figma_post_commentno sensitive capability
  • figma_reconnectno sensitive capability
  • figma_reload_pluginno sensitive capability
  • figma_rename_modeno sensitive capability
  • figma_rename_nodeno sensitive capability
  • figma_rename_variableno sensitive capability
  • figma_reorder_slidesno sensitive capability
  • figma_reset_slotno sensitive capability
  • figma_resize_nodeno sensitive capability
  • figma_scan_code_accessibilityno sensitive capability
  • figma_search_componentsno sensitive capability
  • figma_set_annotationsno sensitive capability
  • figma_set_descriptionno sensitive capability
  • figma_set_fillsno sensitive capability
  • figma_set_image_fillno sensitive capability
  • figma_set_instance_propertiesno sensitive capability
  • figma_set_slide_backgroundno sensitive capability
  • figma_set_slide_transitionno sensitive capability
  • figma_set_slides_view_modeno sensitive capability
  • figma_set_strokesno sensitive capability
  • figma_set_textno sensitive capability
  • figma_setup_design_tokensno sensitive capability
  • figma_skip_slideno sensitive capability
  • figma_take_screenshotno sensitive capability
  • figma_update_variableno sensitive capability
  • figma_watch_consoleno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 6

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v1.40.1 latest D 67/100 7 1.13.0 2026-09-07
v1.39.2 D 67/100 7 1.12.1 2026-08-16
v1.38.3 D 67/100 7 1.12.1 2026-08-03
v1.38.1 D 64/100 11 1.12.1 2026-07-29
v1.37.2 D 64/100 10 1.10.0 2026-07-25
Show 1 more version ↓
v1.36.1 D 60/100 9 1.5.0 2026-07-22

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: D · 67/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/mp3wizard-figma-console-mcp/badge.svg)](https://mcptrustchecker.com/registry/mp3wizard-figma-console-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/mp3wizard-figma-console-mcp"><img src="https://mcptrustchecker.com/registry/mp3wizard-figma-console-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/mp3wizard-figma-console-mcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan @mp3wizard/figma-console-mcp --online

Use the free API → How scoring works

Other implementations of Figma Console 3

Independent packages implementing the same tool, scanned with the same engine. Compare all 4 side by side →

More in Design & Media