Airmcp — 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": "airmcp",
"source": {
"kind": "package",
"origin": "airmcp"
},
"server": {
"name": "airmcp"
}
},
"grade": "A",
"score": {
"score": 90,
"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": "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.13"
},
"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 (200 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 ⇒ gws_drive_list ⇒ cloudflow_trigger. Untrusted input is ingested, private data is read, and it can be sent to an external sink — and at least one leg is a direct schema wire (⇒), where a producer's output drops straight into a free-text parameter of the next tool, so the chain needs little agent cooperation. 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 → gws_drive_list → cloudflow_trigger"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"read_message",
"get_unread_count"
],
"sources": [
"list_directory",
"gws_drive_list"
],
"sinks": [
"send_message",
"send_file",
"cloudflow_trigger"
],
"path": [
"get_unread_count",
"gws_drive_list",
"cloudflow_trigger"
],
"edges": [
{
"from": "get_unread_count",
"to": "gws_drive_list",
"kind": "schema-wired"
},
{
"from": "gws_drive_list",
"to": "cloudflow_trigger",
"kind": "schema-wired"
}
],
"wired": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/cli/codex-mcp.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/cli/codex-mcp.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/cli/codex-mcp.js"
},
"evidence": "ecFileSync } from \"node:child_process\"; import { randomUUID } from \"node:crypto\"; import { chmodSync, existsSync, readFi",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/cli/codex-mcp.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/cli/connect.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/cli/connect.js: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": "dist/cli/connect.js"
},
"evidence": "rt { spawn } from \"node:child_process\"; import { IDENTITY } from \"../shared/constants.js\"; const DEFAULT_URL = `http://1",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/cli/connect.js",
"line": 3,
"nonRuntime": 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: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/cli/doctor.js"
},
"evidence": "ecFileSync } from \"node:child_process\"; import { MODULE_NAMES, OPT_IN_MODULE_NAMES, NPM_PACKAGE_NAME, MCP_CLIENT",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/cli/doctor.js",
"line": 4,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/google/gws.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/google/gws.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/google/gws.js"
},
"evidence": "port { execFile } from \"child_process\"; import { promisify } from \"util\"; import { TIMEOUT, BUFFER, CONCURRENCY } from \"",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/google/gws.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/shared/addon-operations.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/shared/addon-operations.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/addon-operations.js"
},
"evidence": "ecFileSync } from \"node:child_process\"; import { existsSync, mkdirSync, readFileSync, readdirSync, statSync, writeFileSy",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/shared/addon-operations.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/shared/config.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/shared/config.js:2`): 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/config.js"
},
"evidence": "ecFileSync } from \"node:child_process\"; import { join } from \"node:path\"; import { release } from \"node:os\"; import { HO",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/shared/config.js",
"line": 2,
"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 { TIMEOUT, BUFFER, CONCURRENCY } from \"./constants.js\"; import { Semaphor",
"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-002",
"title": "Shell/command execution in server code (dist/shortcuts/tools.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/shortcuts/tools.js:2`): 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/shortcuts/tools.js"
},
"evidence": "{ execFile } from \"node:child_process\"; import { promisify } from \"node:util\"; import { runJxa } from \"../shared/jxa.js\"",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/shortcuts/tools.js",
"line": 2,
"nonRuntime": false
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"cloudflow_trigger\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"cloudflow_trigger\" takes a URL/host parameter \"url\" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).",
"remediation": "Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.",
"location": {
"kind": "tool",
"name": "cloudflow_trigger",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"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-SRC-005",
"title": "Dynamic module load from a non-literal (dist/shared/module-loader.js)",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "In the server's implementation (`dist/shared/module-loader.js:50`): 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.",
"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/module-loader.js"
},
"evidence": "ry { return await import(externalSpec); } catch (error) { const resolvedFromPrefix = resolveAddonPackage",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-005",
"file": "dist/shared/module-loader.js",
"line": 50,
"nonRuntime": false
}
},
{
"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"
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (dist/shared/setup.js)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`dist/shared/setup.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/setup.js"
},
"evidence": "rt { spawn } from \"node:child_process\"; import { open, stat } from \"node:fs/promises\"; import { join } from \"node:path\";",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/shared/setup.js",
"line": 1,
"nonRuntime": true
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"read_message",
"get_unread_count"
],
"sensitiveSource": [
"list_directory",
"gws_drive_list"
],
"externalSink": [
"send_message",
"send_file",
"cloudflow_trigger"
],
"selfContained": false,
"path": [
"get_unread_count",
"gws_drive_list",
"cloudflow_trigger"
],
"pathWired": true,
"description": "A cross-tool exfiltration chain exists: get_unread_count ⇒ gws_drive_list ⇒ cloudflow_trigger."
}
],
"capabilities": [
{
"tool": "audit_log",
"tags": [],
"reasons": {}
},
{
"tool": "audit_summary",
"tags": [],
"reasons": {}
},
{
"tool": "get_bluetooth_state",
"tags": [],
"reasons": {}
},
{
"tool": "scan_bluetooth",
"tags": [],
"reasons": {}
},
{
"tool": "connect_bluetooth",
"tags": [],
"reasons": {}
},
{
"tool": "disconnect_bluetooth",
"tags": [],
"reasons": {}
},
{
"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": "local_llm_generate",
"tags": [],
"reasons": {}
},
{
"tool": "local_llm_status",
"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": "gws_status",
"tags": [],
"reasons": {}
},
{
"tool": "gws_gmail_list",
"tags": [],
"reasons": {}
},
{
"tool": "gws_gmail_read",
"tags": [],
"reasons": {}
},
{
"tool": "gws_gmail_send",
"tags": [],
"reasons": {}
},
{
"tool": "gws_drive_list",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "gws_drive_read",
"tags": [],
"reasons": {}
},
{
"tool": "gws_drive_search",
"tags": [],
"reasons": {}
},
{
"tool": "gws_sheets_read",
"tags": [],
"reasons": {}
},
{
"tool": "gws_sheets_write",
"tags": [],
"reasons": {}
},
{
"tool": "gws_calendar_list",
"tags": [],
"reasons": {}
},
{
"tool": "gws_calendar_create",
"tags": [],
"reasons": {}
},
{
"tool": "gws_docs_read",
"tags": [],
"reasons": {}
},
{
"tool": "gws_tasks_list",
"tags": [],
"reasons": {}
},
{
"tool": "gws_tasks_create",
"tags": [],
"reasons": {}
},
{
"tool": "gws_people_search",
"tags": [],
"reasons": {}
},
{
"tool": "gws_raw",
"tags": [],
"reasons": {}
},
{
"tool": "health_summary",
"tags": [],
"reasons": {}
},
{
"tool": "health_today_steps",
"tags": [],
"reasons": {}
},
{
"tool": "health_heart_rate",
"tags": [],
"reasons": {}
},
{
"tool": "health_sleep",
"tags": [],
"reasons": {}
},
{
"tool": "health_authorize",
"tags": [],
"reasons": {}
},
{
"tool": "summarize_text",
"tags": [],
"reasons": {}
},
{
"tool": "rewrite_text",
"tags": [],
"reasons": {}
},
{
"tool": "proofread_text",
"tags": [],
"reasons": {}
},
{
"tool": "generate_text",
"tags": [],
"reasons": {}
},
{
"tool": "generate_structured",
"tags": [],
"reasons": {}
},
{
"tool": "tag_content",
"tags": [],
"reasons": {}
},
{
"tool": "ai_chat",
"tags": [],
"reasons": {}
},
{
"tool": "generate_image",
"tags": [],
"reasons": {}
},
{
"tool": "scan_document",
"tags": [],
"reasons": {}
},
{
"tool": "generate_plan",
"tags": [],
"reasons": {}
},
{
"tool": "ai_plan_metrics",
"tags": [],
"reasons": {}
},
{
"tool": "ai_status",
"tags": [],
"reasons": {}
},
{
"tool": "ai_agent",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_list_documents",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_create_document",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_list_slides",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_get_slide",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_add_slide",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_set_presenter_notes",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_export_pdf",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_start_slideshow",
"tags": [],
"reasons": {}
},
{
"tool": "keynote_close_document",
"tags": [],
"reasons": {}
},
{
"tool": "get_current_location",
"tags": [],
"reasons": {}
},
{
"tool": "get_location_permission",
"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": "search_location",
"tags": [],
"reasons": {}
},
{
"tool": "get_directions",
"tags": [],
"reasons": {}
},
{
"tool": "drop_pin",
"tags": [],
"reasons": {}
},
{
"tool": "open_address",
"tags": [],
"reasons": {}
},
{
"tool": "search_nearby",
"tags": [],
"reasons": {}
},
{
"tool": "share_location",
"tags": [],
"reasons": {}
},
{
"tool": "geocode",
"tags": [],
"reasons": {}
},
{
"tool": "reverse_geocode",
"tags": [],
"reasons": {}
},
{
"tool": "memory_put",
"tags": [],
"reasons": {}
},
{
"tool": "memory_query",
"tags": [],
"reasons": {}
},
{
"tool": "memory_forget",
"tags": [],
"reasons": {}
},
{
"tool": "memory_stats",
"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": "create_playlist",
"tags": [],
"reasons": {}
},
{
"tool": "add_to_playlist",
"tags": [],
"reasons": {}
},
{
"tool": "remove_from_playlist",
"tags": [],
"reasons": {}
},
{
"tool": "delete_playlist",
"tags": [],
"reasons": {}
},
{
"tool": "get_rating",
"tags": [],
"reasons": {}
},
{
"tool": "set_rating",
"tags": [],
"reasons": {}
},
{
"tool": "set_favorited",
"tags": [],
"reasons": {}
},
{
"tool": "set_disliked",
"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": "numbers_list_documents",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_create_document",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_list_sheets",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_get_cell",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_set_cell",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_read_cells",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_add_sheet",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_export_pdf",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_close_document",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_list_tables",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_get_formula",
"tags": [],
"reasons": {}
},
{
"tool": "numbers_rename_sheet",
"tags": [],
"reasons": {}
},
{
"tool": "pages_list_documents",
"tags": [],
"reasons": {}
},
{
"tool": "pages_open_document",
"tags": [],
"reasons": {}
},
{
"tool": "pages_create_document",
"tags": [],
"reasons": {}
},
{
"tool": "pages_get_body_text",
"tags": [],
"reasons": {}
},
{
"tool": "pages_set_body_text",
"tags": [],
"reasons": {}
},
{
"tool": "pages_export_pdf",
"tags": [],
"reasons": {}
},
{
"tool": "pages_close_document",
"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": "query_photos",
"tags": [],
"reasons": {}
},
{
"tool": "classify_image",
"tags": [],
"reasons": {}
},
{
"tool": "list_podcast_shows",
"tags": [],
"reasons": {}
},
{
"tool": "list_podcast_episodes",
"tags": [],
"reasons": {}
},
{
"tool": "podcast_now_playing",
"tags": [],
"reasons": {}
},
{
"tool": "podcast_playback_control",
"tags": [],
"reasons": {}
},
{
"tool": "play_podcast_episode",
"tags": [],
"reasons": {}
},
{
"tool": "search_podcast_episodes",
"tags": [],
"reasons": {}
},
{
"tool": "cloudflow_trigger",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"http_request\""
]
}
},
{
"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": "list_bookmarks",
"tags": [],
"reasons": {}
},
{
"tool": "add_bookmark",
"tags": [],
"reasons": {}
},
{
"tool": "list_reading_list",
"tags": [],
"reasons": {}
},
{
"tool": "add_to_reading_list",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "c5d8fa7a3148d58b808dd51d67a9848d342de6038c39c7dba7b8357b4e811af0",
"stats": {
"tools": 200,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 9,
"medium": 3,
"low": 3,
"info": 0
}
}
}