Rosetta (tikoci) MCP Server

@tikoci/rosetta npm v0.11.1

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

RouterOS documentation as SQLite FTS5 — RAG search + command glossary via MCP

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 17

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

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

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

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

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

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

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

In the server's implementation (`bin/rosetta.js:23`): 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: } = await import("node:child_process"); const proc = spawn("bun", ["run", entry, ...process.argv.slice(2)], { std

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 bin/rosetta.js

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

Untrusted-input tools ([routeros_get_page, routeros_lookup_property, routeros_explain_command, routeros_command_tree, routeros_stats, routeros_search_changelogs, routeros_dude_search, routeros_dude_get_page, routeros_command_version_check, routeros_command_diff, routeros_current_versions]) co-exist with external-action tools ([routeros_lookup_property, routeros_explain_command, routeros_command_version_check]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [routeros_get_page, routeros_lookup_property, routeros_explain_command, routeros_command_tree, routeros_stats, routeros_search_changelogs, routeros_du

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

Location: flow routeros_get_page → routeros_lookup_property

medium Hardcoded egress to an external endpoint (src/extract-changelogs.ts)MTC-SRC-003

In the server's implementation (`src/extract-changelogs.ts:162`): 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 resp = await fetch(`https://upgrade.mikrotik.com/routeros/NEWESTa7.${channel}`); if (!resp.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 src/extract-changelogs.ts

medium Unconstrained command parameter "command_path" on "routeros_lookup_property"MTC-CAP-006

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

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

Tool "routeros_explain_command" 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 routeros_explain_command · inputSchema.properties.command

medium Unconstrained command parameter "command_path" on "routeros_command_version_check"MTC-CAP-006

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

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

In the server's implementation (`bin/rosetta.js:18`): 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: entry directly await import(entry); } else { // Running under Node — try to delegate to Bun, but warn the user 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 bin/rosetta.js

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

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

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

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

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

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

low Dynamic code execution in packaging/dev tooling (src/release.test.ts)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`src/release.test.ts:779`): 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: oContain("MCP retrieval eval (Phase 0)"); expect(src).not.toContain("MCP retrieval eval (Phase 1, self-supervised, n

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 src/release.test.ts

low Shell/command execution in packaging/dev tooling (src/export.test.ts)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`src/export.test.ts:506`): 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: tch(", "new Database", "child_process", "readFile(", "Bun.file(", "require("]) { expect(src).not.toContain(primiti

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 src/export.test.ts

low Shell/command execution in packaging/dev tooling (src/release.test.ts)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`src/release.test.ts:98`): 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: expect(src).toContain('spawn("bun"'); }); }); // -------------------------------------------------------------------

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 src/release.test.ts

low Shell/command execution in packaging/dev tooling (src/setup.ts)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`src/setup.ts:10`): 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: { execSync } from "node:child_process"; import { closeSync, existsSync, fstatSync, openSync, readdirSync, re

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 src/setup.ts

Tools 14

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

  • routeros_command_version_checkingests untrusted inputruns code / shell
  • routeros_explain_commandingests untrusted inputruns code / shell
  • routeros_lookup_propertyingests untrusted inputruns code / shell
  • routeros_command_diffingests untrusted input
  • routeros_command_treeingests untrusted input
  • routeros_current_versionsingests untrusted input
  • routeros_dude_get_pageingests untrusted input
  • routeros_dude_searchingests untrusted input
  • routeros_get_pageingests untrusted input
  • routeros_search_changelogsingests untrusted input
Show 4 more tools ↓
  • routeros_statsingests untrusted input
  • routeros_device_lookupno sensitive capability
  • routeros_searchno sensitive capability
  • routeros_search_testsno 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.11.1 latest A 93/100 17 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: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/tikoci-rosetta/badge.svg)](https://mcptrustchecker.com/registry/tikoci-rosetta)
HTML
<a href="https://mcptrustchecker.com/registry/tikoci-rosetta"><img src="https://mcptrustchecker.com/registry/tikoci-rosetta/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/tikoci-rosetta/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 @tikoci/rosetta --online

Use the free API → How scoring works

Other implementations of Rosetta 2

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

More in Learning & Documentation