Tuningengines Cli — the complete, unedited output of the deterministic mcptrustchecker engine v1.13.0, scanned . Every finding, capability tag and score component below is exactly what the engine produced — no AI, no post-processing.
{
"tool": {
"name": "mcptrustchecker",
"version": "1.13.0",
"methodologyVersion": "mcptrustchecker-1.13"
},
"target": {
"id": "tuningengines-cli",
"source": {
"kind": "package",
"origin": "tuningengines-cli"
},
"server": {
"name": "tuningengines-cli"
}
},
"grade": "A",
"score": {
"score": 93,
"threatScore": 100,
"grade": "A",
"band": "A",
"categorySubtotals": {
"injection": 0,
"exfiltration": 0,
"permissions": 0,
"supply-chain": 0,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "client",
"term": "capability-exposure",
"level": "high",
"label": "capability blast radius (high) — client exposure if the model is manipulated",
"appliedPenalty": 6
},
{
"kind": "client",
"term": "verification-discount",
"level": "repo",
"label": "publisher verification (public source) — no provenance, but the source is public and inspectable",
"appliedPenalty": 1
},
{
"kind": "client",
"term": "coverage-honesty",
"level": "source",
"label": "inspection depth (source) — how much of the target the scan could see",
"appliedPenalty": 0
}
],
"gatesFired": [],
"methodologyVersion": "mcptrustchecker-1.13"
},
"capability": {
"level": "high",
"reasons": [
"reads sensitive or local data",
"has a read → egress path (a data-exfiltration surface)",
"can execute shell commands or code"
],
"tags": [
"sensitive-source",
"code-exec"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (111 recovered), not enumerated from a running server. Tool-poisoning, Unicode-smuggling, capability and toxic-flow analysis ran on this inferred surface, but a mis-parsed registration could be missed or mis-attributed, so tool-derived findings are capped below “confirmed”. To grade the real runtime surface, scan the running server: --command \"npx -y <package>\"."
]
},
"findings": [
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/commands/auth.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/commands/auth.js:4`): 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.",
"remediation": "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": {
"kind": "server",
"name": "dist/commands/auth.js"
},
"evidence": "sterAuthCommands; const child_process_1 = require(\"child_process\"); const client_1 = require(\"../client\"); const config_",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/commands/auth.js",
"line": 4,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/commands/billing.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/commands/billing.js:37`): 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.",
"remediation": "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": {
"kind": "server",
"name": "dist/commands/billing.js"
},
"evidence": "rBillingCommands; const child_process_1 = require(\"child_process\"); const config_1 = require(\"../config\"); const output",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/commands/billing.js",
"line": 37,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/commands/guard.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/commands/guard.js:40`): 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.",
"remediation": "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": {
"kind": "server",
"name": "dist/commands/guard.js"
},
"evidence": "quire(\"crypto\")); const child_process_1 = require(\"child_process\"); const output = __importStar(require(\"../output\")); c",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/commands/guard.js",
"line": 40,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (scripts/smoke/inference-smoke.mjs)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/smoke/inference-smoke.mjs:3`): 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.",
"remediation": "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": {
"kind": "server",
"name": "scripts/smoke/inference-smoke.mjs"
},
"evidence": "spawnSync } from \"node:child_process\"; import { existsSync, mkdirSync, mkdtempSync, rmSync, writeFileSync } from \"node:",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "scripts/smoke/inference-smoke.mjs",
"line": 3,
"nonRuntime": true
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "list_traces",
"tags": [],
"reasons": {}
},
{
"tool": "show_trace",
"tags": [],
"reasons": {}
},
{
"tool": "create_trace",
"tags": [],
"reasons": {}
},
{
"tool": "list_outcomes",
"tags": [],
"reasons": {}
},
{
"tool": "list_insights",
"tags": [],
"reasons": {}
},
{
"tool": "show_insight",
"tags": [],
"reasons": {}
},
{
"tool": "doctor_simulate",
"tags": [],
"reasons": {}
},
{
"tool": "list_runtime_interventions",
"tags": [],
"reasons": {}
},
{
"tool": "show_runtime_intervention",
"tags": [],
"reasons": {}
},
{
"tool": "list_runtime_state_references",
"tags": [],
"reasons": {}
},
{
"tool": "show_runtime_state_reference",
"tags": [],
"reasons": {}
},
{
"tool": "show_registry_sync",
"tags": [],
"reasons": {}
},
{
"tool": "list_mcp_templates",
"tags": [],
"reasons": {}
},
{
"tool": "show_mcp_template",
"tags": [],
"reasons": {}
},
{
"tool": "list_work_sessions",
"tags": [],
"reasons": {}
},
{
"tool": "show_work_session",
"tags": [],
"reasons": {}
},
{
"tool": "list_inference_feedback",
"tags": [],
"reasons": {}
},
{
"tool": "list_initiatives",
"tags": [],
"reasons": {}
},
{
"tool": "show_initiative",
"tags": [],
"reasons": {}
},
{
"tool": "list_compliance_risks",
"tags": [],
"reasons": {}
},
{
"tool": "show_compliance_risk",
"tags": [],
"reasons": {}
},
{
"tool": "validate_compliance",
"tags": [],
"reasons": {}
},
{
"tool": "show_compliance_evidence",
"tags": [],
"reasons": {}
},
{
"tool": "show_compliance_certification",
"tags": [],
"reasons": {}
},
{
"tool": "registry_sync_dry_run",
"tags": [],
"reasons": {}
},
{
"tool": "create_runtime_intervention",
"tags": [],
"reasons": {}
},
{
"tool": "upsert_runtime_state_reference",
"tags": [],
"reasons": {}
},
{
"tool": "registry_sync_apply",
"tags": [],
"reasons": {}
},
{
"tool": "install_mcp_template",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"parameter \"secret\""
]
}
},
{
"tool": "complete_work_session",
"tags": [],
"reasons": {}
},
{
"tool": "preview_work_session_repair",
"tags": [],
"reasons": {}
},
{
"tool": "apply_work_session_repair",
"tags": [],
"reasons": {}
},
{
"tool": "undo_work_session_repair",
"tags": [],
"reasons": {}
},
{
"tool": "record_inference_feedback",
"tags": [],
"reasons": {}
},
{
"tool": "propose_outcome",
"tags": [],
"reasons": {}
},
{
"tool": "create_compliance_source_run",
"tags": [],
"reasons": {}
},
{
"tool": "submit_compliance_source_results",
"tags": [],
"reasons": {}
},
{
"tool": "complete_compliance_source_run",
"tags": [],
"reasons": {}
},
{
"tool": "flush_inference_capture",
"tags": [],
"reasons": {}
},
{
"tool": "retry_tenant_resource_sync",
"tags": [],
"reasons": {}
},
{
"tool": "verify_tenant_secret_reference",
"tags": [],
"reasons": {}
},
{
"tool": "record_outcome",
"tags": [],
"reasons": {}
},
{
"tool": "map_outcome",
"tags": [],
"reasons": {}
},
{
"tool": "accept_insight",
"tags": [],
"reasons": {}
},
{
"tool": "apply_insight",
"tags": [],
"reasons": {}
},
{
"tool": "list_policy_decisions",
"tags": [],
"reasons": {}
},
{
"tool": "show_policy_decision",
"tags": [],
"reasons": {}
},
{
"tool": "list_policy_templates",
"tags": [],
"reasons": {}
},
{
"tool": "render_policy_template",
"tags": [],
"reasons": {}
},
{
"tool": "generate_policy_draft",
"tags": [],
"reasons": {}
},
{
"tool": "list_approvals",
"tags": [],
"reasons": {}
},
{
"tool": "show_approval",
"tags": [],
"reasons": {}
},
{
"tool": "approve_approval",
"tags": [],
"reasons": {}
},
{
"tool": "deny_approval",
"tags": [],
"reasons": {}
},
{
"tool": "list_tenant_resources",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_resource_list",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_resource_show",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_resource_create",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_resource_update",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_resource_delete",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_resource_validate",
"tags": [],
"reasons": {}
},
{
"tool": "test_governance_policy",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_team_list",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_team_invite",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_team_set_inference_role",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_team_disable",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_team_enable",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_team_remove",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_invitation_cancel",
"tags": [],
"reasons": {}
},
{
"tool": "tenant_domains_update",
"tags": [],
"reasons": {}
},
{
"tool": "inference_capture_show",
"tags": [],
"reasons": {}
},
{
"tool": "inference_capture_update",
"tags": [],
"reasons": {}
},
{
"tool": "list_jobs",
"tags": [],
"reasons": {}
},
{
"tool": "show_job",
"tags": [],
"reasons": {}
},
{
"tool": "create_job",
"tags": [],
"reasons": {}
},
{
"tool": "cancel_job",
"tags": [],
"reasons": {}
},
{
"tool": "job_status",
"tags": [],
"reasons": {}
},
{
"tool": "retry_job",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_job",
"tags": [],
"reasons": {}
},
{
"tool": "list_models",
"tags": [],
"reasons": {}
},
{
"tool": "show_model",
"tags": [],
"reasons": {}
},
{
"tool": "delete_model",
"tags": [],
"reasons": {}
},
{
"tool": "get_balance",
"tags": [],
"reasons": {}
},
{
"tool": "get_account",
"tags": [],
"reasons": {}
},
{
"tool": "list_supported_models",
"tags": [],
"reasons": {}
},
{
"tool": "model_status",
"tags": [],
"reasons": {}
},
{
"tool": "list_catalog_models",
"tags": [],
"reasons": {}
},
{
"tool": "get_catalog_model",
"tags": [],
"reasons": {}
},
{
"tool": "catalog_export_status",
"tags": [],
"reasons": {}
},
{
"tool": "list_datasets",
"tags": [],
"reasons": {}
},
{
"tool": "show_dataset",
"tags": [],
"reasons": {}
},
{
"tool": "create_dataset",
"tags": [],
"reasons": {}
},
{
"tool": "delete_dataset",
"tags": [],
"reasons": {}
},
{
"tool": "dataset_status",
"tags": [],
"reasons": {}
},
{
"tool": "list_evaluations",
"tags": [],
"reasons": {}
},
{
"tool": "show_evaluation",
"tags": [],
"reasons": {}
},
{
"tool": "create_evaluation",
"tags": [],
"reasons": {}
},
{
"tool": "cancel_evaluation",
"tags": [],
"reasons": {}
},
{
"tool": "evaluation_status",
"tags": [],
"reasons": {}
},
{
"tool": "list_evaluators",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_evaluation",
"tags": [],
"reasons": {}
},
{
"tool": "list_inference_models",
"tags": [],
"reasons": {}
},
{
"tool": "inference_usage",
"tags": [],
"reasons": {}
},
{
"tool": "get_inference_jwt",
"tags": [],
"reasons": {}
},
{
"tool": "get_inference_token",
"tags": [],
"reasons": {}
},
{
"tool": "call_inference",
"tags": [],
"reasons": {}
},
{
"tool": "send_agent_message",
"tags": [],
"reasons": {}
},
{
"tool": "list_skills",
"tags": [],
"reasons": {}
},
{
"tool": "invoke_skill",
"tags": [],
"reasons": {}
},
{
"tool": "list_agents",
"tags": [],
"reasons": {}
},
{
"tool": "show_agent",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "8e6c651e0304a87c1b57ce920755358c52b275b078c9399256b47d9ac9215c20",
"stats": {
"tools": 111,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 3,
"medium": 0,
"low": 1,
"info": 0
}
}
}