Figma Mcp Bridge (atezer) MCP Server

@atezer/figma-mcp-bridge npm v1.9.11

Published by @atezer — 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.

F-MCP ATezer: MCP server and Figma plugin bridge for Claude/Cursor. No REST token required.

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

high Dynamic evaluation of a non-literal value (f-mcp-plugin/code.js)MTC-SRC-010

In the server's implementation (`f-mcp-plugin/code.js:641`): 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 f-mcp-plugin/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/plugin-bridge-server.js`) and evaluates runtime values as code (`f-mcp-plugin/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 (f-mcp-plugin/code.js)MTC-SRC-001

In the server's implementation (`f-mcp-plugin/code.js:641`): 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 f-mcp-plugin/code.js

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

In the server's implementation (`dist/core/plugin-bridge-server.js:20`): 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: port { execSync } from "child_process"; import { logger } from "./logger.js"; import { auditTool, auditPlugin } from "./

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/plugin-bridge-server.js

medium Hardcoded egress to an external endpoint (dist/local-plugin-only.js)MTC-SRC-003

In the server's implementation (`dist/local-plugin-only.js:2135`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. 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 res = await fetch("https://api.figma.com/v1/me", { headers: { "X-Figma-Token": token },

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/local-plugin-only.js

medium Untrusted input concatenated into a command sink (dist/core/plugin-bridge-server.js)MTC-SRC-009

In the server's implementation (`dist/core/plugin-bridge-server.js:72`): 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 line = execSync(`ps -p ${pid} -o ppid=,comm=`, { timeout: 1000 }).toString().trim(); co

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/plugin-bridge-server.js

medium Dynamic module load from a non-literal (dist/core/bootstrap-injector.js)MTC-SRC-005

In the server's implementation (`dist/core/bootstrap-injector.js:90`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: secenek sun (a) library import (b) figma_create_mini_ds (c) template (d) linter-off — secim yapmadan createFrame YASAK";

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/bootstrap-injector.js

Tools 60

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

  • figma_get_prototype_connectionsingests untrusted input
  • figma_get_token_browserreads sensitive data
  • figma_add_modeno sensitive capability
  • figma_arrange_component_setno sensitive capability
  • figma_batch_create_variablesno sensitive capability
  • figma_batch_update_variablesno sensitive capability
  • figma_bind_variableno sensitive capability
  • figma_capture_screenshotno sensitive capability
  • figma_check_design_parityno sensitive capability
  • figma_clear_consoleno sensitive capability
Show 50 more tools ↓
  • figma_clear_rest_tokenno sensitive capability
  • figma_clone_screen_to_deviceno sensitive capability
  • figma_create_frameno sensitive capability
  • figma_create_groupno sensitive capability
  • figma_create_interactionno sensitive capability
  • figma_create_mini_dsno sensitive capability
  • figma_create_prototype_connectionno sensitive capability
  • figma_create_rectangleno sensitive capability
  • figma_create_textno sensitive capability
  • figma_create_variableno sensitive capability
  • figma_create_variable_collectionno sensitive capability
  • figma_delete_variableno sensitive capability
  • figma_delete_variable_collectionno sensitive capability
  • figma_executeno sensitive capability
  • figma_export_nodesno sensitive capability
  • figma_get_code_connectno sensitive capability
  • figma_get_componentno sensitive capability
  • figma_get_component_for_developmentno sensitive capability
  • figma_get_component_imageno sensitive capability
  • figma_get_console_logsno sensitive capability
  • figma_get_design_contextno sensitive capability
  • figma_get_design_system_summaryno sensitive capability
  • figma_get_file_datano sensitive capability
  • figma_get_library_variablesno sensitive capability
  • figma_get_rest_token_statusno sensitive capability
  • figma_get_statusno sensitive capability
  • figma_get_stylesno sensitive capability
  • figma_get_variablesno sensitive capability
  • figma_import_styleno sensitive capability
  • figma_instantiate_componentno sensitive capability
  • figma_list_connected_filesno sensitive capability
  • figma_plugin_diagnosticsno sensitive capability
  • figma_refresh_variablesno sensitive capability
  • figma_rename_modeno sensitive capability
  • figma_rename_variableno sensitive capability
  • figma_rest_apino sensitive capability
  • figma_scan_ds_complianceno sensitive capability
  • figma_search_assetsno sensitive capability
  • figma_search_componentsno sensitive capability
  • figma_set_descriptionno sensitive capability
  • figma_set_flow_starting_pointno sensitive capability
  • figma_set_instance_propertiesno sensitive capability
  • figma_set_portno sensitive capability
  • figma_set_rest_tokenno sensitive capability
  • figma_set_scroll_behaviorno sensitive capability
  • figma_setup_design_tokensno sensitive capability
  • figma_update_variableno sensitive capability
  • figma_useno sensitive capability
  • figma_validate_screenno sensitive capability
  • figma_watch_consoleno sensitive capability

What this scan could not see

Versions 1

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.9.11 latest D 67/100 7 1.13.0 2026-09-07

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/atezer-figma-mcp-bridge/badge.svg)](https://mcptrustchecker.com/registry/atezer-figma-mcp-bridge)
HTML
<a href="https://mcptrustchecker.com/registry/atezer-figma-mcp-bridge"><img src="https://mcptrustchecker.com/registry/atezer-figma-mcp-bridge/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/atezer-figma-mcp-bridge/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 @atezer/figma-mcp-bridge --online

Use the free API → How scoring works

Other implementations of Figma Mcp Bridge 4

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

More in Design & Media