Iconnect — the complete, unedited output of the deterministic mcptrustchecker engine v1.10.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.10.0",
"methodologyVersion": "mcptrustchecker-1.9"
},
"target": {
"id": "iconnect-mcp",
"source": {
"kind": "package",
"origin": "iconnect-mcp"
},
"server": {
"name": "iconnect-mcp"
}
},
"grade": "B",
"score": {
"score": 84,
"threatScore": 94,
"grade": "B",
"band": "B",
"categorySubtotals": {
"injection": 6.3,
"exfiltration": 0,
"permissions": 0,
"supply-chain": 0,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "threat",
"ruleId": "MTC-SRC-009",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"rawWeight": 9,
"confidenceMult": 0.7,
"diminishingFactor": 1,
"appliedPenalty": 6.3
},
{
"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": "source",
"label": "publisher verification (provenance) — cryptographic build provenance ties the artifact to its source",
"appliedPenalty": 0
},
{
"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.9"
},
"capability": {
"level": "critical",
"reasons": [
"ingests untrusted external content (a prompt-injection entry point)",
"can send data / act on an external service",
"can create, modify or delete files",
"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",
"file-write",
"untrusted-input",
"external-sink",
"code-exec"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (124 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: get_unread_count → list_directory → send_file. 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": "get_unread_count → list_directory → send_file"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"read_message",
"get_unread_count"
],
"sources": [
"list_directory"
],
"sinks": [
"send_message",
"send_file"
],
"path": [
"get_unread_count",
"list_directory",
"send_file"
],
"edges": [
{
"from": "get_unread_count",
"to": "list_directory",
"kind": "agent-mediated"
},
{
"from": "list_directory",
"to": "send_file",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/cli/doctor.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/cli/doctor.js:9`): 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/cli/doctor.js"
},
"evidence": "{ execSync } from \"node:child_process\"; import { MODULE_NAMES, STARTER_MODULES, NPM_PACKAGE_NAME } from \"../shared/confi",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/cli/doctor.js",
"line": 9,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/shared/jxa.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/shared/jxa.js:1`): 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/shared/jxa.js"
},
"evidence": "{ execFile } from \"node:child_process\"; import { promisify } from \"node:util\"; const execFileAsync = promisify(execFile)",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/shared/jxa.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/shared/swift.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/shared/swift.js:1`): 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/shared/swift.js"
},
"evidence": "rt { spawn } from \"node:child_process\"; import { access } from \"node:fs/promises\"; import { resolve, dirname } from \"nod",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/shared/swift.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-009",
"title": "Untrusted input concatenated into a command sink (dist/cli/doctor.js)",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/cli/doctor.js:117`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. 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/cli/doctor.js"
},
"evidence": "try { execSync(`osascript -l JavaScript -e \"Application('${appName}'); JSON.stringify({ok:true})\"`, {",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-009",
"file": "dist/cli/doctor.js",
"line": 117,
"nonRuntime": false
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"move_file\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"move_file\" can write, overwrite or delete files (keyword \"move_file\" in tool name). Verify it is scoped to a safe directory.",
"remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
"location": {
"kind": "tool",
"name": "move_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"move_file\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"move_file\" 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": "move_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-008",
"title": "Unconstrained path parameter \"path\" on \"list_directory\"",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"list_directory\" takes a path parameter \"path\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
"remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
"location": {
"kind": "tool",
"name": "list_directory",
"field": "inputSchema.properties.path"
},
"data": {
"param": "path"
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"read_message",
"get_unread_count"
],
"sensitiveSource": [
"list_directory"
],
"externalSink": [
"send_message",
"send_file"
],
"selfContained": false,
"path": [
"get_unread_count",
"list_directory",
"send_file"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: get_unread_count → list_directory → send_file."
}
],
"capabilities": [
{
"tool": "list_calendars",
"tags": [],
"reasons": {}
},
{
"tool": "list_events",
"tags": [],
"reasons": {}
},
{
"tool": "read_event",
"tags": [],
"reasons": {}
},
{
"tool": "create_event",
"tags": [],
"reasons": {}
},
{
"tool": "update_event",
"tags": [],
"reasons": {}
},
{
"tool": "delete_event",
"tags": [],
"reasons": {}
},
{
"tool": "search_events",
"tags": [],
"reasons": {}
},
{
"tool": "get_upcoming_events",
"tags": [],
"reasons": {}
},
{
"tool": "today_events",
"tags": [],
"reasons": {}
},
{
"tool": "create_recurring_event",
"tags": [],
"reasons": {}
},
{
"tool": "list_contacts",
"tags": [],
"reasons": {}
},
{
"tool": "search_contacts",
"tags": [],
"reasons": {}
},
{
"tool": "read_contact",
"tags": [],
"reasons": {}
},
{
"tool": "create_contact",
"tags": [],
"reasons": {}
},
{
"tool": "update_contact",
"tags": [],
"reasons": {}
},
{
"tool": "delete_contact",
"tags": [],
"reasons": {}
},
{
"tool": "list_groups",
"tags": [],
"reasons": {}
},
{
"tool": "add_contact_email",
"tags": [],
"reasons": {}
},
{
"tool": "add_contact_phone",
"tags": [],
"reasons": {}
},
{
"tool": "list_group_members",
"tags": [],
"reasons": {}
},
{
"tool": "summarize_context",
"tags": [],
"reasons": {}
},
{
"tool": "search_files",
"tags": [],
"reasons": {}
},
{
"tool": "get_file_info",
"tags": [],
"reasons": {}
},
{
"tool": "set_file_tags",
"tags": [],
"reasons": {}
},
{
"tool": "recent_files",
"tags": [],
"reasons": {}
},
{
"tool": "list_directory",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "move_file",
"tags": [
"file-write"
],
"reasons": {
"file-write": [
"keyword \"move_file\" in tool name"
]
}
},
{
"tool": "trash_file",
"tags": [],
"reasons": {}
},
{
"tool": "create_directory",
"tags": [],
"reasons": {}
},
{
"tool": "get_workflow",
"tags": [],
"reasons": {}
},
{
"tool": "summarize_text",
"tags": [],
"reasons": {}
},
{
"tool": "rewrite_text",
"tags": [],
"reasons": {}
},
{
"tool": "proofread_text",
"tags": [],
"reasons": {}
},
{
"tool": "list_mailboxes",
"tags": [],
"reasons": {}
},
{
"tool": "list_messages",
"tags": [],
"reasons": {}
},
{
"tool": "read_message",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"read_message\""
]
}
},
{
"tool": "search_messages",
"tags": [],
"reasons": {}
},
{
"tool": "mark_message_read",
"tags": [],
"reasons": {}
},
{
"tool": "flag_message",
"tags": [],
"reasons": {}
},
{
"tool": "get_unread_count",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"read_message\""
]
}
},
{
"tool": "move_message",
"tags": [],
"reasons": {}
},
{
"tool": "list_accounts",
"tags": [],
"reasons": {}
},
{
"tool": "send_mail",
"tags": [],
"reasons": {}
},
{
"tool": "reply_mail",
"tags": [],
"reasons": {}
},
{
"tool": "list_chats",
"tags": [],
"reasons": {}
},
{
"tool": "read_chat",
"tags": [],
"reasons": {}
},
{
"tool": "search_chats",
"tags": [],
"reasons": {}
},
{
"tool": "send_message",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"send_message\""
]
}
},
{
"tool": "send_file",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"sms\""
]
}
},
{
"tool": "list_participants",
"tags": [],
"reasons": {}
},
{
"tool": "list_playlists",
"tags": [],
"reasons": {}
},
{
"tool": "list_tracks",
"tags": [],
"reasons": {}
},
{
"tool": "now_playing",
"tags": [],
"reasons": {}
},
{
"tool": "playback_control",
"tags": [],
"reasons": {}
},
{
"tool": "search_tracks",
"tags": [],
"reasons": {}
},
{
"tool": "play_track",
"tags": [],
"reasons": {}
},
{
"tool": "play_playlist",
"tags": [],
"reasons": {}
},
{
"tool": "get_track_info",
"tags": [],
"reasons": {}
},
{
"tool": "set_shuffle",
"tags": [],
"reasons": {}
},
{
"tool": "list_notes",
"tags": [],
"reasons": {}
},
{
"tool": "search_notes",
"tags": [],
"reasons": {}
},
{
"tool": "read_note",
"tags": [],
"reasons": {}
},
{
"tool": "create_note",
"tags": [],
"reasons": {}
},
{
"tool": "update_note",
"tags": [],
"reasons": {}
},
{
"tool": "delete_note",
"tags": [],
"reasons": {}
},
{
"tool": "list_folders",
"tags": [],
"reasons": {}
},
{
"tool": "create_folder",
"tags": [],
"reasons": {}
},
{
"tool": "move_note",
"tags": [],
"reasons": {}
},
{
"tool": "scan_notes",
"tags": [],
"reasons": {}
},
{
"tool": "compare_notes",
"tags": [],
"reasons": {}
},
{
"tool": "bulk_move_notes",
"tags": [],
"reasons": {}
},
{
"tool": "list_albums",
"tags": [],
"reasons": {}
},
{
"tool": "list_photos",
"tags": [],
"reasons": {}
},
{
"tool": "search_photos",
"tags": [],
"reasons": {}
},
{
"tool": "get_photo_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_favorites",
"tags": [],
"reasons": {}
},
{
"tool": "create_album",
"tags": [],
"reasons": {}
},
{
"tool": "add_to_album",
"tags": [],
"reasons": {}
},
{
"tool": "import_photo",
"tags": [],
"reasons": {}
},
{
"tool": "delete_photos",
"tags": [],
"reasons": {}
},
{
"tool": "list_reminder_lists",
"tags": [],
"reasons": {}
},
{
"tool": "list_reminders",
"tags": [],
"reasons": {}
},
{
"tool": "read_reminder",
"tags": [],
"reasons": {}
},
{
"tool": "create_reminder",
"tags": [],
"reasons": {}
},
{
"tool": "update_reminder",
"tags": [],
"reasons": {}
},
{
"tool": "complete_reminder",
"tags": [],
"reasons": {}
},
{
"tool": "delete_reminder",
"tags": [],
"reasons": {}
},
{
"tool": "search_reminders",
"tags": [],
"reasons": {}
},
{
"tool": "create_reminder_list",
"tags": [],
"reasons": {}
},
{
"tool": "delete_reminder_list",
"tags": [],
"reasons": {}
},
{
"tool": "create_recurring_reminder",
"tags": [],
"reasons": {}
},
{
"tool": "list_tabs",
"tags": [],
"reasons": {}
},
{
"tool": "read_page_content",
"tags": [],
"reasons": {}
},
{
"tool": "get_current_tab",
"tags": [],
"reasons": {}
},
{
"tool": "open_url",
"tags": [],
"reasons": {}
},
{
"tool": "close_tab",
"tags": [],
"reasons": {}
},
{
"tool": "activate_tab",
"tags": [],
"reasons": {}
},
{
"tool": "run_javascript",
"tags": [],
"reasons": {}
},
{
"tool": "search_tabs",
"tags": [],
"reasons": {}
},
{
"tool": "semantic_index",
"tags": [],
"reasons": {}
},
{
"tool": "semantic_search",
"tags": [],
"reasons": {}
},
{
"tool": "find_related",
"tags": [],
"reasons": {}
},
{
"tool": "semantic_status",
"tags": [],
"reasons": {}
},
{
"tool": "setup_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "list_shortcuts",
"tags": [],
"reasons": {}
},
{
"tool": "run_shortcut",
"tags": [],
"reasons": {}
},
{
"tool": "search_shortcuts",
"tags": [],
"reasons": {}
},
{
"tool": "get_shortcut_detail",
"tags": [],
"reasons": {}
},
{
"tool": "get_clipboard",
"tags": [],
"reasons": {}
},
{
"tool": "set_clipboard",
"tags": [],
"reasons": {}
},
{
"tool": "get_volume",
"tags": [],
"reasons": {}
},
{
"tool": "set_volume",
"tags": [],
"reasons": {}
},
{
"tool": "toggle_dark_mode",
"tags": [],
"reasons": {}
},
{
"tool": "get_frontmost_app",
"tags": [],
"reasons": {}
},
{
"tool": "list_running_apps",
"tags": [],
"reasons": {}
},
{
"tool": "get_screen_info",
"tags": [],
"reasons": {}
},
{
"tool": "show_notification",
"tags": [],
"reasons": {}
},
{
"tool": "capture_screenshot",
"tags": [],
"reasons": {}
},
{
"tool": "tv_list_playlists",
"tags": [],
"reasons": {}
},
{
"tool": "tv_list_tracks",
"tags": [],
"reasons": {}
},
{
"tool": "tv_now_playing",
"tags": [],
"reasons": {}
},
{
"tool": "tv_playback_control",
"tags": [],
"reasons": {}
},
{
"tool": "tv_search",
"tags": [],
"reasons": {}
},
{
"tool": "tv_play",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "462caeb61d9bbe215f0c5791de3377cbb33e12a850ca619f439456b88894d701",
"stats": {
"tools": 124,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 3,
"medium": 2,
"low": 2,
"info": 0
}
}
}