Studio (1key4ai) MCP Server

@1key4ai/mcp-studio npm v0.6.9

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

1K4 Studio bridge for Claude Code. Send messages, manage files, and act as a Studio agent via MCP tools.

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

PointsWhat was foundCategory
−15.4 Secrecy directive MTC-INJ-SECRECY-1 injection

2. Client adoption risk — 85 − 11 = 74. 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 25

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

This server (without client built-ins) exposes a complete data-exfiltration chain: 1k4_advisors → 1k4_list_files ⇒ 1k4_send_message. Untrusted input is ingested, private data is read, and it can be sent to an external sink — and at least one leg is a direct schema wire (⇒), where a producer's output drops straight into a free-text parameter of the next tool, so the chain needs little agent cooperation. 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 1k4_advisors → 1k4_list_files → 1k4_send_message

high Reads a sensitive credential path or dumps the environment (dist/index.js)MTC-SRC-006

In the server's implementation (`dist/index.js:1045`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. 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-account.*\.json$/, /id_rsa/, /id_ed25519/, /\.keystore$/, /\.pyc$/, /\.so$/, /\.dylib$/, /\.wasm$/, /\

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

high Secrecy directive (conceal action from the user)MTC-INJ-SECRECY-1

Secrecy directive (conceal action from the user) detected in the description of tool "lab_review_document". Instruction-like content in tool metadata is executed by the model, not the human, and is the primary tool-poisoning vector.

Evidence: Do NOT tell the user

Fix: Tool descriptions should describe behavior, not instruct the assistant. Treat imperative / secrecy / sequencing language in metadata as hostile.

Location: tool lab_review_document · description

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

Tool "lab_vm_ops" appears to run shell commands or evaluate code (parameter "command"). 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 lab_vm_ops

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

In the server's implementation (`dist/index.js:1012`): 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 { statSync, existsSync, readFileSync } from "fs"; import { join, relative

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 URL/host parameter "url" on "lab_web_fetch"MTC-CAP-007

Tool "lab_web_fetch" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool lab_web_fetch · inputSchema.properties.url

medium Tool "lab_create_file" can modify the filesystemMTC-CAP-002

Tool "lab_create_file" can write, overwrite or delete files (keyword "create_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool lab_create_file

medium Tool "lab_edit_file" can modify the filesystemMTC-CAP-002

Tool "lab_edit_file" can write, overwrite or delete files (keyword "edit_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool lab_edit_file

medium Tool "lab_move_file" can modify the filesystemMTC-CAP-002

Tool "lab_move_file" can write, overwrite or delete files (keyword "move_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool lab_move_file

medium Tool "lab_delete_file" can modify the filesystemMTC-CAP-002

Tool "lab_delete_file" can write, overwrite or delete files (keyword "delete_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool lab_delete_file

medium Unconstrained command parameter "command" on "lab_vm_ops"MTC-CAP-006

Tool "lab_vm_ops" takes a command-shaped parameter "command" 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 lab_vm_ops · inputSchema.properties.command

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

In the server's implementation (`dist/index.js:2315`): 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: iles the modified files import (upstream) OR that import the modified files (downstream). Shown to reviewers as context-

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

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

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

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

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

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

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

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

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

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

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

low Unconstrained path parameter "folder_path" on "1k4_list_files"MTC-CAP-008

Tool "1k4_list_files" takes a path parameter "folder_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool 1k4_list_files · inputSchema.properties.folder_path

low Unconstrained path parameter "path" on "lab_edit_file"MTC-CAP-008

Tool "lab_edit_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool lab_edit_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "lab_read_file"MTC-CAP-008

Tool "lab_read_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool lab_read_file · inputSchema.properties.path

low Unconstrained path parameter "folder_path" on "lab_list_files"MTC-CAP-008

Tool "lab_list_files" takes a path parameter "folder_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool lab_list_files · inputSchema.properties.folder_path

low Unconstrained path parameter "file_name" on "lab_move_file"MTC-CAP-008

Tool "lab_move_file" takes a path parameter "file_name" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool lab_move_file · inputSchema.properties.file_name

low Unconstrained path parameter "file_id" on "lab_delete_file"MTC-CAP-008

Tool "lab_delete_file" takes a path parameter "file_id" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool lab_delete_file · inputSchema.properties.file_id

low Unconstrained path parameter "file_name" on "lab_delete_file"MTC-CAP-008

Tool "lab_delete_file" takes a path parameter "file_name" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool lab_delete_file · inputSchema.properties.file_name

low Unconstrained path parameter "folder_path" on "lab_delete_file"MTC-CAP-008

Tool "lab_delete_file" takes a path parameter "folder_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool lab_delete_file · inputSchema.properties.folder_path

Tools 44

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

  • lab_vm_opsingests untrusted inputruns code / shell
  • 1k4_advisorsingests untrusted input
  • 1k4_brainstormingests untrusted input
  • 1k4_consultingests untrusted input
  • 1k4_get_fileingests untrusted input
  • 1k4_list_filesreads sensitive data
  • 1k4_send_messagenetwork egress
  • 1k4_wait_for_messagenetwork egress
  • lab_create_filewrites files
  • lab_delete_filewrites files
Show 34 more tools ↓
  • lab_edit_filewrites files
  • lab_list_filesreads sensitive data
  • lab_move_filewrites files
  • lab_read_filereads sensitive data
  • lab_web_fetchingests untrusted input
  • 1k4_answer_questionnaireno sensitive capability
  • 1k4_cancel_brainstormno sensitive capability
  • 1k4_cancel_consultno sensitive capability
  • 1k4_dispatch_phaseno sensitive capability
  • 1k4_get_brainstorm_statusno sensitive capability
  • 1k4_get_consult_statusno sensitive capability
  • 1k4_get_review_statusno sensitive capability
  • 1k4_get_session_statusno sensitive capability
  • 1k4_open_urlno sensitive capability
  • 1k4_quorum_apply_editsno sensitive capability
  • 1k4_quorum_open_configuratorno sensitive capability
  • 1k4_quorum_reenable_sessionno sensitive capability
  • 1k4_quorum_skip_sessionno sensitive capability
  • 1k4_quorum_submit_configuratorno sensitive capability
  • 1k4_review_planno sensitive capability
  • filenameno sensitive capability
  • lab_create_documentno sensitive capability
  • lab_create_folderno sensitive capability
  • lab_create_mockupno sensitive capability
  • lab_create_presentationno sensitive capability
  • lab_data_analysisno sensitive capability
  • lab_delete_folderno sensitive capability
  • lab_deployno sensitive capability
  • lab_edit_documentno sensitive capability
  • lab_gitno sensitive capability
  • lab_locate_planno sensitive capability
  • lab_questionnaireno sensitive capability
  • lab_review_documentno sensitive capability
  • lab_update_fileno 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.6.9 latest C 74/100 25 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: C · 74/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/1key4ai-mcp-studio/badge.svg)](https://mcptrustchecker.com/registry/1key4ai-mcp-studio)
HTML
<a href="https://mcptrustchecker.com/registry/1key4ai-mcp-studio"><img src="https://mcptrustchecker.com/registry/1key4ai-mcp-studio/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/1key4ai-mcp-studio/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 @1key4ai/mcp-studio --online

Use the free API → How scoring works

Other implementations of Studio 3

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

More in Other