Appstore Connect — 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": "appstore-connect-mcp-server",
"source": {
"kind": "package",
"origin": "appstore-connect-mcp-server"
},
"server": {
"name": "appstore-connect-mcp-server"
}
},
"grade": "A",
"score": {
"score": 92,
"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": "none",
"label": "publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read",
"appliedPenalty": 2
},
{
"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": [
"ingests untrusted external content (a prompt-injection entry point)",
"can execute shell commands or code"
],
"tags": [
"untrusted-input",
"code-exec"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (27 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 (cli-tools/src/codemagic/cli/cli_process.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/cli/cli_process.py:97`): 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": "cli-tools/src/codemagic/cli/cli_process.py"
},
"evidence": "self._process = subprocess.Popen( self._command_args, stdout=stdout,",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/cli/cli_process.py",
"line": 97,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/altool/altool.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/altool/altool.py:73`): 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": "cli-tools/src/codemagic/models/altool/altool.py"
},
"evidence": "try: subprocess.check_output([\"xcrun\", \"altool\", \"--version\"]) except subprocess.CalledProces",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/altool/altool.py",
"line": 73,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/application_package/ipa.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/application_package/ipa.py:70`): 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": "cli-tools/src/codemagic/models/application_package/ipa.py"
},
"evidence": "completed_process = subprocess.run( command_args, capture_output=True,",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/application_package/ipa.py",
"line": 70,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/application_package/macos_package.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/application_package/macos_package.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": "cli-tools/src/codemagic/models/application_package/macos_package.py"
},
"evidence": "else: subprocess.check_output(command, stderr=subprocess.PIPE) except subprocess.CalledProcess",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/application_package/macos_package.py",
"line": 38,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/bundle_id_detector.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/bundle_id_detector.py:73`): 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": "cli-tools/src/codemagic/models/bundle_id_detector.py"
},
"evidence": "stdout = subprocess.check_output(cmd, stderr=subprocess.PIPE).decode() except subprocess.CalledPr",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/bundle_id_detector.py",
"line": 73,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/certificate_p12_exporter.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/certificate_p12_exporter.py:52`): 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": "cli-tools/src/codemagic/models/certificate_p12_exporter.py"
},
"evidence": "completed_process = subprocess.run( (self._executable, \"pkcs12\", \"-help\"), capture_o",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/certificate_p12_exporter.py",
"line": 52,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/code_sign_entitlements.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/code_sign_entitlements.py:73`): 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": "cli-tools/src/codemagic/models/code_sign_entitlements.py"
},
"evidence": "output = subprocess.check_output(cmd, stderr=subprocess.PIPE) except subprocess.CalledProcessErro",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/code_sign_entitlements.py",
"line": 73,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/code_signing_settings_manager.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/code_signing_settings_manager.py:126`): 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": "cli-tools/src/codemagic/models/code_signing_settings_manager.py"
},
"evidence": "else: subprocess.check_output(cmd, stderr=subprocess.PIPE) except subprocess.CalledProcessErro",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/code_signing_settings_manager.py",
"line": 126,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/pbx_project.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/pbx_project.py:66`): 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": "cli-tools/src/codemagic/models/pbx_project.py"
},
"evidence": "se: subprocess.check_output(cmd, stderr=subprocess.PIPE) except subprocess.CalledProcess",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/pbx_project.py",
"line": 66,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (cli-tools/src/codemagic/models/provisioning_profile.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`cli-tools/src/codemagic/models/provisioning_profile.py:73`): 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": "cli-tools/src/codemagic/models/provisioning_profile.py"
},
"evidence": "stdout = subprocess.check_output(cmd, stderr=subprocess.PIPE) converted = cls._bytes(stdo",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "cli-tools/src/codemagic/models/provisioning_profile.py",
"line": 73,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SUP-012",
"title": "Package has no license",
"category": "hygiene",
"severity": "info",
"confidence": "strong",
"description": "\"appstore-connect-mcp-server\" has no declared license. This is a legal/reuse concern, not a security finding.",
"location": {
"kind": "package",
"name": "appstore-connect-mcp-server"
}
},
{
"ruleId": "MTC-SUP-011",
"title": "Package declares no source repository",
"category": "supply-chain",
"severity": "info",
"confidence": "strong",
"description": "\"appstore-connect-mcp-server\" declares no repository URL, so its published artifact cannot be compared against reviewable source.",
"remediation": "Prefer packages that link to public, reviewable source.",
"location": {
"kind": "package",
"name": "appstore-connect-mcp-server"
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "list_apps",
"tags": [],
"reasons": {}
},
{
"tool": "list_beta_groups",
"tags": [],
"reasons": {}
},
{
"tool": "list_group_testers",
"tags": [],
"reasons": {}
},
{
"tool": "add_tester_to_group",
"tags": [],
"reasons": {}
},
{
"tool": "remove_tester_from_group",
"tags": [],
"reasons": {}
},
{
"tool": "get_app_info",
"tags": [],
"reasons": {}
},
{
"tool": "create_bundle_id",
"tags": [],
"reasons": {}
},
{
"tool": "list_bundle_ids",
"tags": [],
"reasons": {}
},
{
"tool": "get_bundle_id_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_devices",
"tags": [],
"reasons": {}
},
{
"tool": "enable_bundle_capability",
"tags": [],
"reasons": {}
},
{
"tool": "disable_bundle_capability",
"tags": [],
"reasons": {}
},
{
"tool": "list_users",
"tags": [],
"reasons": {}
},
{
"tool": "create_analytics_report_request",
"tags": [],
"reasons": {}
},
{
"tool": "list_analytics_reports",
"tags": [],
"reasons": {}
},
{
"tool": "list_analytics_report_segments",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "download_analytics_report_segment",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "download_sales_report",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "download_finance_report",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "list_beta_feedback_screenshots",
"tags": [],
"reasons": {}
},
{
"tool": "get_beta_feedback_screenshot",
"tags": [],
"reasons": {}
},
{
"tool": "create_app_store_version",
"tags": [],
"reasons": {}
},
{
"tool": "list_app_store_versions",
"tags": [],
"reasons": {}
},
{
"tool": "list_app_store_version_localizations",
"tags": [],
"reasons": {}
},
{
"tool": "get_app_store_version_localization",
"tags": [],
"reasons": {}
},
{
"tool": "update_app_store_version_localization",
"tags": [],
"reasons": {}
},
{
"tool": "list_schemes",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "ccdc0370d00070003d7d6275b3e6490e4c3ad31b351494a55d47ea6c526834dc",
"stats": {
"tools": 27,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 10,
"medium": 0,
"low": 0,
"info": 2
}
}
}