Robloxstudio (6xvl) MCP Server

@6xvl/robloxstudio-mcp npm v3.2.2

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

Roblox Studio MCP server — extended fork with terrain/lighting/animation/sound/particle/tween/textchat/material/profile handlers, Roblox StudioMCP.exe hook, Blender-parity hang controls, multi-Studio routing.

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/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
High
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
A Why this grade threat 100 − adoption risk = 93/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 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. 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
−6 capability blast radius (high) — 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 13

high Tool "breakpoints" exposes command/code executionMTC-CAP-001

Tool "breakpoints" appears to run shell commands or evaluate code (parameter "script"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool breakpoints

high Tool "eval_server_runtime" exposes command/code executionMTC-CAP-001

Tool "eval_server_runtime" appears to run shell commands or evaluate code (keyword "eval" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool eval_server_runtime

high Tool "eval_client_runtime" exposes command/code executionMTC-CAP-001

Tool "eval_client_runtime" appears to run shell commands or evaluate code (keyword "eval" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool eval_client_runtime

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

In the server's implementation (`dist/index.js:2389`): 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: { execFileSync } from "child_process"; import { existsSync as existsSync2, readFileSync, readdirSync, statSync } 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/index.js

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

In the server's implementation (`dist/index.js:7340`): 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 response = await fetch(`https://apis.roblox.com/universes/v1/places/${placeId}/universe`); if (!response.ok)

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/index.js

medium Unconstrained command parameter "script_path" on "breakpoints"MTC-CAP-006

Tool "breakpoints" takes a command-shaped parameter "script_path" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool breakpoints · inputSchema.properties.script_path

medium Unconstrained command parameter "code" on "eval_server_runtime"MTC-CAP-006

Tool "eval_server_runtime" takes a command-shaped parameter "code" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool eval_server_runtime · inputSchema.properties.code

medium Unconstrained command parameter "code" on "eval_client_runtime"MTC-CAP-006

Tool "eval_client_runtime" takes a command-shaped parameter "code" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool eval_client_runtime · inputSchema.properties.code

medium Dynamic module load from a non-literal (studio-plugin/src/modules/LuauExec.ts)MTC-SRC-005

In the server's implementation (`studio-plugin/src/modules/LuauExec.ts:155`): 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: \tend \tlocal function require(module) \t\tlocal history_start = #__mcp_LogService:GetLogHistory() \t\tlocal ok, value

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 studio-plugin/src/modules/LuauExec.ts

medium Dynamic module load from a non-literal (studio-plugin/src/modules/handlers/MicroProfilerHandlers.ts)MTC-SRC-005

In the server's implementation (`studio-plugin/src/modules/handlers/MicroProfilerHandlers.ts:406`): 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: libOrErr] = pcall(() => require(libModule) as LibMPLike); if (!ok) { return { error: "libmp_require_failed", me

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 studio-plugin/src/modules/handlers/MicroProfilerHandlers.ts

low Mutating tool "breakpoints" declares no destructiveHintMTC-CAP-005

Tool "breakpoints" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool breakpoints

low Mutating tool "eval_server_runtime" declares no destructiveHintMTC-CAP-005

Tool "eval_server_runtime" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool eval_server_runtime

low Mutating tool "eval_client_runtime" declares no destructiveHintMTC-CAP-005

Tool "eval_client_runtime" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool eval_client_runtime

Tools 137

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

  • breakpointsruns code / shell
  • eval_client_runtimeruns code / shell
  • eval_server_runtimeruns code / shell
  • add_tagno sensitive capability
  • animation_list_tracksno sensitive capability
  • animation_load_keyframesno sensitive capability
  • animation_playno sensitive capability
  • animation_stopno sensitive capability
  • attribute_schema_validateno sensitive capability
  • bulk_set_attributesno sensitive capability
Show 127 more tools ↓
  • capture_device_matrixno sensitive capability
  • capture_micro_profilerno sensitive capability
  • capture_screenshotno sensitive capability
  • capture_script_profilerno sensitive capability
  • character_navigationno sensitive capability
  • clone_objectno sensitive capability
  • compare_instancesno sensitive capability
  • create_buildno sensitive capability
  • create_objectno sensitive capability
  • delete_attributeno sensitive capability
  • delete_objectno sensitive capability
  • delete_script_linesno sensitive capability
  • diff_subtreeno sensitive capability
  • edit_script_linesno sensitive capability
  • execute_luauno sensitive capability
  • export_buildno sensitive capability
  • export_rbxmno sensitive capability
  • find_and_replace_in_scriptsno sensitive capability
  • generate_buildno sensitive capability
  • generate_materialno sensitive capability
  • generate_meshno sensitive capability
  • generate_modelno sensitive capability
  • generate_procedural_modelno sensitive capability
  • get_asset_detailsno sensitive capability
  • get_asset_thumbnailno sensitive capability
  • get_attributesno sensitive capability
  • get_buildno sensitive capability
  • get_class_infono sensitive capability
  • get_connected_instancesno sensitive capability
  • get_descendantsno sensitive capability
  • get_device_simulator_stateno sensitive capability
  • get_file_treeno sensitive capability
  • get_handler_healthno sensitive capability
  • get_instance_childrenno sensitive capability
  • get_instance_propertiesno sensitive capability
  • get_memory_breakdownno sensitive capability
  • get_output_logno sensitive capability
  • get_place_infono sensitive capability
  • get_playtest_outputno sensitive capability
  • get_project_structureno sensitive capability
  • get_roblox_docsno sensitive capability
  • get_roblox_skillsno sensitive capability
  • get_runtime_logsno sensitive capability
  • get_scene_analysisno sensitive capability
  • get_script_sourceno sensitive capability
  • get_selectionno sensitive capability
  • get_servicesno sensitive capability
  • get_simulation_stateno sensitive capability
  • get_taggedno sensitive capability
  • get_tagsno sensitive capability
  • grep_scriptsno sensitive capability
  • humanoid_description_applyno sensitive capability
  • import_buildno sensitive capability
  • import_rbxmno sensitive capability
  • import_sceneno sensitive capability
  • insert_assetno sensitive capability
  • insert_script_linesno sensitive capability
  • insert_serviceno sensitive capability
  • lighting_getno sensitive capability
  • lighting_list_presetsno sensitive capability
  • lighting_setno sensitive capability
  • lighting_set_presetno sensitive capability
  • list_libraryno sensitive capability
  • list_studiosno sensitive capability
  • manage_instanceno sensitive capability
  • mass_create_objectsno sensitive capability
  • mass_duplicateno sensitive capability
  • mass_get_propertyno sensitive capability
  • mass_set_propertyno sensitive capability
  • material_create_variantno sensitive capability
  • material_list_variantsno sensitive capability
  • material_override_baseno sensitive capability
  • multiplayer_playtestno sensitive capability
  • package_publishno sensitive capability
  • particle_createno sensitive capability
  • particle_tuneno sensitive capability
  • physics_bakeno sensitive capability
  • preview_assetno sensitive capability
  • profile_snapshotno sensitive capability
  • profile_startno sensitive capability
  • profile_stopno sensitive capability
  • redono sensitive capability
  • remove_tagno sensitive capability
  • reparent_instanceno sensitive capability
  • reset_simulation_stateno sensitive capability
  • robloxstudio-mcp-hookno sensitive capability
  • rojo_statusno sensitive capability
  • search_assetsno sensitive capability
  • search_by_propertyno sensitive capability
  • search_filesno sensitive capability
  • search_materialsno sensitive capability
  • search_objectsno sensitive capability
  • selectionno sensitive capability
  • set_active_studiono sensitive capability
  • set_attributeno sensitive capability
  • set_device_simulatorno sensitive capability
  • set_network_profileno sensitive capability
  • set_propertiesno sensitive capability
  • set_propertyno sensitive capability
  • set_script_sourceno sensitive capability
  • simulate_keyboard_inputno sensitive capability
  • simulate_mouse_inputno sensitive capability
  • smart_duplicateno sensitive capability
  • solo_playtestno sensitive capability
  • sound_load_from_assetidno sensitive capability
  • sound_play_previewno sensitive capability
  • sound_set_eqno sensitive capability
  • sound_set_reverbno sensitive capability
  • sound_stop_previewno sensitive capability
  • start_playtestno sensitive capability
  • stop_playtestno sensitive capability
  • streamingenabled_auditno sensitive capability
  • terrain_clearno sensitive capability
  • terrain_fill_ballno sensitive capability
  • terrain_fill_blockno sensitive capability
  • terrain_fill_cylinderno sensitive capability
  • terrain_fill_wedgeno sensitive capability
  • terrain_get_materialsno sensitive capability
  • terrain_read_voxelsno sensitive capability
  • textchat_configureno sensitive capability
  • textchat_create_commandno sensitive capability
  • textchat_list_channelsno sensitive capability
  • tween_previewno sensitive capability
  • undono sensitive capability
  • upload_assetno sensitive capability
  • Wno sensitive capability
  • wally_listno sensitive capability

What this scan could not see

Versions 3

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
v3.2.2 latest A 93/100 13 1.13.0 2026-09-09
v3.1.0 A 99/100 0 1.12.1 2026-08-24
v3.0.4 A 99/100 0 1.12.1 2026-08-23

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: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/6xvl-robloxstudio-mcp/badge.svg)](https://mcptrustchecker.com/registry/6xvl-robloxstudio-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/6xvl-robloxstudio-mcp"><img src="https://mcptrustchecker.com/registry/6xvl-robloxstudio-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/6xvl-robloxstudio-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 @6xvl/robloxstudio-mcp --online

Use the free API → How scoring works

Other implementations of Robloxstudio 3

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

More in Gaming & Entertainment