Scitex Cloud — the complete, unedited output of the deterministic mcptrustchecker engine v1.8.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.8.0",
"methodologyVersion": "mcptrustchecker-1.8"
},
"target": {
"id": "scitex-cloud",
"source": {
"kind": "package",
"origin": "scitex-cloud"
},
"server": {
"name": "scitex-cloud"
}
},
"grade": "B",
"score": {
"score": 89,
"threatScore": 100,
"grade": "B",
"band": "B",
"categorySubtotals": {
"injection": 0,
"exfiltration": 0,
"permissions": 0,
"supply-chain": 0,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "client",
"term": "capability-exposure",
"level": "critical",
"label": "capability blast radius (critical) — client exposure if the model is manipulated",
"appliedPenalty": 10
},
{
"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.8"
},
"capability": {
"level": "critical",
"reasons": [
"ingests untrusted external content (a prompt-injection entry point)",
"reads sensitive or local data",
"has a read → egress path (a data-exfiltration surface)",
"can execute shell commands or code",
"untrusted-input, sensitive-source and egress co-exist across tools (toxic-flow surface)",
"untrusted input can reach code execution"
],
"tags": [
"sensitive-source",
"code-exec",
"untrusted-input"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (50 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-FLOW-002",
"title": "Completed toxic-flow trifecta across tools",
"category": "exfiltration",
"severity": "critical",
"confidence": "strong",
"description": "This server (without client built-ins) exposes a complete data-exfiltration chain: cloud_sdk_files_download → api_project_list_files → onsite_eval_js. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.",
"remediation": "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": {
"kind": "flow",
"name": "cloud_sdk_files_download → api_project_list_files → onsite_eval_js"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"cloud_sdk_files_download"
],
"sources": [
"api_project_list_files",
"cloud_sdk_files_list"
],
"sinks": [
"onsite_eval_js"
],
"path": [
"cloud_sdk_files_download",
"api_project_list_files",
"onsite_eval_js"
],
"edges": [
{
"from": "cloud_sdk_files_download",
"to": "api_project_list_files",
"kind": "agent-mediated"
},
{
"from": "api_project_list_files",
"to": "onsite_eval_js",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-SRC-006",
"title": "Reads a sensitive credential path or dumps the environment (src/scitex_cloud/_cli/ssh.py)",
"category": "exfiltration",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_cli/ssh.py:117`): 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.",
"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": "src/scitex_cloud/_cli/ssh.py"
},
"evidence": "~/.ssh",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-006",
"file": "src/scitex_cloud/_cli/ssh.py",
"line": 117
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"onsite_eval_js\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"onsite_eval_js\" appears to run shell commands or evaluate code (keyword \"eval\"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.",
"remediation": "Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.",
"location": {
"kind": "tool",
"name": "onsite_eval_js"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SRC-001",
"title": "Dynamic code execution in server code (src/scitex_cloud/appmaker/_validate.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/appmaker/_validate.py:24`): 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.",
"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": "src/scitex_cloud/appmaker/_validate.py"
},
"evidence": "eval(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-001",
"file": "src/scitex_cloud/appmaker/_validate.py",
"line": 24
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/_cli/_gitea_collab.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_cli/_gitea_collab.py:102`): 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": "src/scitex_cloud/_cli/_gitea_collab.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/_cli/_gitea_collab.py",
"line": 102
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/_cli/_gitea_repo.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_cli/_gitea_repo.py: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.",
"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": "src/scitex_cloud/_cli/_gitea_repo.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/_cli/_gitea_repo.py",
"line": 23
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/_cli/_gitea_utils.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_cli/_gitea_utils.py:92`): 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": "src/scitex_cloud/_cli/_gitea_utils.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/_cli/_gitea_utils.py",
"line": 92
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/_cli/_workspace_cmds.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_cli/_workspace_cmds.py:31`): 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": "src/scitex_cloud/_cli/_workspace_cmds.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/_cli/_workspace_cmds.py",
"line": 31
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/_cli/ssh.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_cli/ssh.py:134`): 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": "src/scitex_cloud/_cli/ssh.py"
},
"evidence": "subprocess.call(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/_cli/ssh.py",
"line": 134
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/_mcp_tools/gitea.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_mcp_tools/gitea.py:27`): 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": "src/scitex_cloud/_mcp_tools/gitea.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/_mcp_tools/gitea.py",
"line": 27
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/_utils/_docker.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/_utils/_docker.py:48`): 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": "src/scitex_cloud/_utils/_docker.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/_utils/_docker.py",
"line": 48
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/appmaker/_deps.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/appmaker/_deps.py:123`): 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": "src/scitex_cloud/appmaker/_deps.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/appmaker/_deps.py",
"line": 123
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/appmaker/_scaffold_react.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/appmaker/_scaffold_react.py:38`): 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": "src/scitex_cloud/appmaker/_scaffold_react.py"
},
"evidence": "child_process",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/appmaker/_scaffold_react.py",
"line": 38
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_cloud/appmaker/_validate.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_cloud/appmaker/_validate.py:25`): 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": "src/scitex_cloud/appmaker/_validate.py"
},
"evidence": "exec(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_cloud/appmaker/_validate.py",
"line": 25
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"onsite_eval_js\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"onsite_eval_js\" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.",
"remediation": "Declare accurate annotations, and gate destructive tools on user confirmation regardless.",
"location": {
"kind": "tool",
"name": "onsite_eval_js"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SUP-012",
"title": "Package has no license",
"category": "hygiene",
"severity": "info",
"confidence": "strong",
"description": "\"scitex-cloud\" has no declared license. This is a legal/reuse concern, not a security finding.",
"location": {
"kind": "package",
"name": "scitex-cloud"
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"cloud_sdk_files_download"
],
"sensitiveSource": [
"api_project_list_files",
"cloud_sdk_files_list"
],
"externalSink": [
"onsite_eval_js"
],
"selfContained": false,
"path": [
"cloud_sdk_files_download",
"api_project_list_files",
"onsite_eval_js"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: cloud_sdk_files_download → api_project_list_files → onsite_eval_js."
}
],
"capabilities": [
{
"tool": "api_scholar_search",
"tags": [],
"reasons": {}
},
{
"tool": "api_crossref_search",
"tags": [],
"reasons": {}
},
{
"tool": "api_crossref_by_doi",
"tags": [],
"reasons": {}
},
{
"tool": "api_writer_compile",
"tags": [],
"reasons": {}
},
{
"tool": "api_writer_list_sections",
"tags": [],
"reasons": {}
},
{
"tool": "api_project_list_files",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "api_project_commit",
"tags": [],
"reasons": {}
},
{
"tool": "api_enrich_bibtex",
"tags": [],
"reasons": {}
},
{
"tool": "api_status",
"tags": [],
"reasons": {}
},
{
"tool": "app_get_current",
"tags": [],
"reasons": {}
},
{
"tool": "app_switch_to",
"tags": [],
"reasons": {}
},
{
"tool": "app_list_all",
"tags": [],
"reasons": {}
},
{
"tool": "app_get_info",
"tags": [],
"reasons": {}
},
{
"tool": "app_check_deps",
"tags": [],
"reasons": {}
},
{
"tool": "app_get_prefs",
"tags": [],
"reasons": {}
},
{
"tool": "app_set_prefs",
"tags": [],
"reasons": {}
},
{
"tool": "repo_login",
"tags": [],
"reasons": {}
},
{
"tool": "repo_clone",
"tags": [],
"reasons": {}
},
{
"tool": "repo_create",
"tags": [],
"reasons": {}
},
{
"tool": "repo_list",
"tags": [],
"reasons": {}
},
{
"tool": "repo_search",
"tags": [],
"reasons": {}
},
{
"tool": "repo_delete",
"tags": [],
"reasons": {}
},
{
"tool": "repo_fork",
"tags": [],
"reasons": {}
},
{
"tool": "repo_pr_create",
"tags": [],
"reasons": {}
},
{
"tool": "repo_pr_list",
"tags": [],
"reasons": {}
},
{
"tool": "repo_issue_create",
"tags": [],
"reasons": {}
},
{
"tool": "repo_issue_list",
"tags": [],
"reasons": {}
},
{
"tool": "repo_push",
"tags": [],
"reasons": {}
},
{
"tool": "repo_pull",
"tags": [],
"reasons": {}
},
{
"tool": "repo_status",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_capture_page",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_check_permission",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_get_context",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_eval_js",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"eval\""
]
}
},
{
"tool": "onsite_get_dev_app_url",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_ui_action",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_list",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_create",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_get",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_update",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_delete",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_search",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_files_list",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "cloud_sdk_files_upload",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_files_download",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "cloud_sdk_files_delete",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_jobs_submit",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_jobs_status",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_jobs_cancel",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_jobs_list",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "8d70cc5735d67714aa669ea1ddaddc39e16429a50383b62c12b5f581f49b0ca5",
"stats": {
"tools": 50,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 13,
"medium": 0,
"low": 1,
"info": 1
}
}
}