@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.
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:
| Points | What was found | Category |
|---|---|---|
| −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:
| Points | Adoption-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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Each tool and what it can reach — statically extracted from the published source.
lab_vm_opsingests untrusted inputruns code / shell1k4_advisorsingests untrusted input1k4_brainstormingests untrusted input1k4_consultingests untrusted input1k4_get_fileingests untrusted input1k4_list_filesreads sensitive data1k4_send_messagenetwork egress1k4_wait_for_messagenetwork egresslab_create_filewrites fileslab_delete_filewrites fileslab_edit_filewrites fileslab_list_filesreads sensitive datalab_move_filewrites fileslab_read_filereads sensitive datalab_web_fetchingests untrusted input1k4_answer_questionnaireno sensitive capability1k4_cancel_brainstormno sensitive capability1k4_cancel_consultno sensitive capability1k4_dispatch_phaseno sensitive capability1k4_get_brainstorm_statusno sensitive capability1k4_get_consult_statusno sensitive capability1k4_get_review_statusno sensitive capability1k4_get_session_statusno sensitive capability1k4_open_urlno sensitive capability1k4_quorum_apply_editsno sensitive capability1k4_quorum_open_configuratorno sensitive capability1k4_quorum_reenable_sessionno sensitive capability1k4_quorum_skip_sessionno sensitive capability1k4_quorum_submit_configuratorno sensitive capability1k4_review_planno sensitive capabilityfilenameno sensitive capabilitylab_create_documentno sensitive capabilitylab_create_folderno sensitive capabilitylab_create_mockupno sensitive capabilitylab_create_presentationno sensitive capabilitylab_data_analysisno sensitive capabilitylab_delete_folderno sensitive capabilitylab_deployno sensitive capabilitylab_edit_documentno sensitive capabilitylab_gitno sensitive capabilitylab_locate_planno sensitive capabilitylab_questionnaireno sensitive capabilitylab_review_documentno sensitive capabilitylab_update_fileno sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
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.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v0.6.9 latest |
C 74/100 | 25 | 1.13.0 | 2026-09-07 |
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.
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
Independent packages implementing the same tool, scanned with the same engine. Compare all 4 side by side →
Make any CLI command an MCP server
One word MCP for any CLI command
AIOProductOS Studio — an MCP server that turns your AI host into a product videographer: scripted screen recordings of YOUR web app with a smooth on-screen cursor, camera zooms, highlight callouts, caption cards, branded transitions, and marketing-grade s
A Model Context Protocol server implementation for AdGuard Home that enables AI agents to query and manage DNS records, filtering rules and more
Identity oracle and trust layer for autonomous AI agents. Bidirectional KYA and trust scoring.
MCP server with Airtable integration
A free one-minute reset for people, delivered by AI, with no account or personal data.
Access SEC filings efficiently, save time and tokens, and get cited answers.
A smart [MCP](https://modelcontextprotocol.io) server for [AniList](https://anilist.co) that gets your anime/manga taste - not just API calls.