Linkedsword MCP Server

linkedsword-mcp npm v0.5.0

Published by yannyhl — 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: diff-reviewed script editing, planning mode, playtest automation, asset uploads.

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 9

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

Tool "run_code" appears to run shell commands or evaluate code (keyword "run_code" 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 run_code

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

Tool "run_script_in_play_mode" appears to run shell commands or evaluate code (keyword "run_script" 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 run_script_in_play_mode

medium Untrusted input can drive an external actionMTC-FLOW-005

Untrusted-input tools ([list_library, get_asset_details, get_plan]) co-exist with external-action tools ([run_code, run_script_in_play_mode]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [list_library, get_asset_details, get_plan] → sinks [run_code, run_script_in_play_mode]

Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.

Location: flow list_library → run_code

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

In the server's implementation (`dist/index.js:2461`): 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 res2 = await fetch("https://apis.roblox.com/assets/v1/assets", { method: "POST", headers: { "

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 "code" on "run_code"MTC-CAP-006

Tool "run_code" 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 run_code · inputSchema.properties.code

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

Tool "run_script_in_play_mode" 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 run_script_in_play_mode · inputSchema.properties.code

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

Tool "run_code" 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 run_code

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

Tool "run_script_in_play_mode" 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 run_script_in_play_mode

low Shell/command execution in packaging/dev tooling (scripts/install-plugin.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/install-plugin.js:7`): 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: ecFileSync } = require("child_process"); // Try the bundled location first (npm install), then fall back to the dev //

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 scripts/install-plugin.js

Tools 93

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

  • get_asset_detailsingests untrusted input
  • get_planingests untrusted input
  • list_libraryingests untrusted input
  • run_coderuns code / shell
  • run_script_in_play_moderuns code / shell
  • add_tagno sensitive capability
  • batch_operationsno sensitive capability
  • capture_screenshotno sensitive capability
  • character_navigationno sensitive capability
  • clear_terrainno sensitive capability
Show 83 more tools ↓
  • clone_objectno sensitive capability
  • compare_instancesno sensitive capability
  • create_objectno sensitive capability
  • create_planno sensitive capability
  • create_weldno sensitive capability
  • delete_attributeno sensitive capability
  • delete_checkpointno sensitive capability
  • delete_objectno sensitive capability
  • delete_planno sensitive capability
  • delete_script_linesno sensitive capability
  • edit_script_linesno sensitive capability
  • execute_luauno sensitive capability
  • export_buildno sensitive capability
  • fill_terrainno sensitive capability
  • get_activity_logno sensitive capability
  • get_asset_thumbnailno sensitive capability
  • get_attributeno sensitive capability
  • get_attributesno sensitive capability
  • get_auto_accept_statusno sensitive capability
  • get_bounding_boxno sensitive capability
  • get_class_infono sensitive capability
  • get_connected_instancesno sensitive capability
  • get_console_outputno sensitive capability
  • get_descendantsno sensitive capability
  • get_diff_historyno sensitive capability
  • get_diff_queueno sensitive capability
  • get_file_treeno sensitive capability
  • get_instance_childrenno sensitive capability
  • get_instance_propertiesno sensitive capability
  • get_place_infono sensitive capability
  • get_playtest_outputno sensitive capability
  • get_project_structureno sensitive capability
  • get_script_sourceno sensitive capability
  • get_selectionno sensitive capability
  • get_servicesno sensitive capability
  • get_stable_idno sensitive capability
  • get_studio_modeno sensitive capability
  • get_taggedno sensitive capability
  • get_tagsno sensitive capability
  • grep_replaceno sensitive capability
  • grep_scriptsno sensitive capability
  • group_objectsno sensitive capability
  • import_buildno sensitive capability
  • insert_modelno sensitive capability
  • insert_script_linesno sensitive capability
  • list_plansno sensitive capability
  • list_roblox_studiosno sensitive capability
  • mass_create_objectsno sensitive capability
  • mass_duplicateno sensitive capability
  • mass_get_propertyno sensitive capability
  • mass_set_propertyno sensitive capability
  • parallel_searchno sensitive capability
  • patch_scriptno sensitive capability
  • raycastno sensitive capability
  • redono sensitive capability
  • remove_tagno sensitive capability
  • reparent_objectno sensitive capability
  • resolve_diffno sensitive capability
  • resolve_stable_idno sensitive capability
  • revert_to_checkpointno sensitive capability
  • rollbackno sensitive capability
  • run_playtest_scenariono sensitive capability
  • search_assetsno sensitive capability
  • search_by_propertyno sensitive capability
  • search_filesno sensitive capability
  • search_objectsno sensitive capability
  • set_active_studiono sensitive capability
  • set_attributeno sensitive capability
  • set_auto_acceptno sensitive capability
  • set_calculated_propertyno sensitive capability
  • set_modeno sensitive capability
  • set_propertyno sensitive capability
  • set_script_sourceno sensitive capability
  • set_selectionno sensitive capability
  • smart_duplicateno sensitive capability
  • snapshot_checkpointno sensitive capability
  • start_playtestno sensitive capability
  • stop_playtestno sensitive capability
  • ungroup_objectsno sensitive capability
  • update_plan_stepno sensitive capability
  • upload_assetno sensitive capability
  • user_keyboard_inputno sensitive capability
  • user_mouse_inputno 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 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
v0.5.0 latest A 93/100 9 1.13.0 2026-09-08

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

Use the free API → How scoring works

More in Developer Tools