@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
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:
| Points | Adoption-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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Each tool and what it can reach — statically extracted from the published source.
routeros_command_version_checkingests untrusted inputruns code / shellrouteros_explain_commandingests untrusted inputruns code / shellrouteros_lookup_propertyingests untrusted inputruns code / shellrouteros_command_diffingests untrusted inputrouteros_command_treeingests untrusted inputrouteros_current_versionsingests untrusted inputrouteros_dude_get_pageingests untrusted inputrouteros_dude_searchingests untrusted inputrouteros_get_pageingests untrusted inputrouteros_search_changelogsingests untrusted inputrouteros_statsingests untrusted inputrouteros_device_lookupno sensitive capabilityrouteros_searchno sensitive capabilityrouteros_search_testsno 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.11.1 latest |
A 93/100 | 17 | 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 @tikoci/rosetta --online
Independent packages implementing the same tool, scanned with the same engine. Compare all 3 side by side →
MCP server for Rosetta/PyRosetta functions and properties
AI-powered Excel translation MCP server that preserves formatting, formulas, and data integrity
stdio compatibility bridge for the hosted AgentMail MCP server
MCP server for Alfa documentation retrieval
MCP server providing Alpine.js documentation and reference
Search the official Astro framework documentation.
MCP server providing ATAG 2.0 (Authoring Tool Accessibility Guidelines) guidance for authoring tool developers
Aurais Research Reader as an MCP server — paste a paper or article, get a structured read with verbatim-verified quotes + a signed Vorion proof chain (via @vorionsys/aurais-core).