Omnicord — 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": "@orygn/omnicord",
"source": {
"kind": "package",
"origin": "@orygn/omnicord"
},
"server": {
"name": "@orygn/omnicord"
}
},
"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": [
"ingests untrusted external content (a prompt-injection entry point)",
"can send data / act on an external service",
"can execute shell commands or code"
],
"tags": [
"code-exec",
"external-sink",
"untrusted-input"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (155 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-CAP-001",
"title": "Tool \"update_app_command\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"update_app_command\" appears to run shell commands or evaluate code (parameter \"command\"). 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": "update_app_command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"delete_app_command\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"delete_app_command\" appears to run shell commands or evaluate code (parameter \"command\"). 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": "delete_app_command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-FLOW-005",
"title": "Untrusted input can drive an external action",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "Untrusted-input tools ([get_message, read_messages]) co-exist with external-action tools ([update_app_command, delete_app_command, create_webhook, update_webhook, delete_webhook, send_webhook_message, crosspost_message, lock_channel, unlock_channel, send_message, forward_message]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.",
"remediation": "Require confirmation for state-changing/egress actions triggered after processing untrusted content.",
"location": {
"kind": "flow",
"name": "get_message → update_app_command"
},
"evidence": "untrusted [get_message, read_messages] → sinks [update_app_command, delete_app_command, create_webhook, update_webhook, delete_webhook, send_webhook_message, cr",
"owasp": "LLM06:2025 Excessive Agency",
"references": [],
"data": {
"untrusted": [
"get_message",
"read_messages"
],
"sinks": [
"update_app_command",
"delete_app_command",
"create_webhook",
"update_webhook",
"delete_webhook",
"send_webhook_message",
"crosspost_message",
"lock_channel",
"unlock_channel",
"send_message",
"forward_message"
]
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/wizard.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/wizard.js:122`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. 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/wizard.js"
},
"evidence": "{ const res = await fetch(`https://discord.com/api/v10${path}`, { headers: { Authorization: `Bot ${token}` }",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/wizard.js",
"line": 122,
"nonRuntime": false
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"avatar_url\" on \"create_webhook\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"create_webhook\" takes a URL/host parameter \"avatar_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": "create_webhook",
"field": "inputSchema.properties.avatar_url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "avatar_url"
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"avatar_url\" on \"update_webhook\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"update_webhook\" takes a URL/host parameter \"avatar_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": "update_webhook",
"field": "inputSchema.properties.avatar_url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "avatar_url"
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"avatar_url_override\" on \"send_webhook_message\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"send_webhook_message\" takes a URL/host parameter \"avatar_url_override\" 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": "send_webhook_message",
"field": "inputSchema.properties.avatar_url_override"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "avatar_url_override"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"command\" on \"update_app_command\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"update_app_command\" takes a command-shaped parameter \"command\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "update_app_command",
"field": "inputSchema.properties.command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "command"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"command\" on \"delete_app_command\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"delete_app_command\" takes a command-shaped parameter \"command\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "delete_app_command",
"field": "inputSchema.properties.command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "command"
}
},
{
"ruleId": "MTC-SRC-005",
"title": "Dynamic module load from a non-literal (dist/config.js)",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "In the server's implementation (`dist/config.js:30`): 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/config.js"
},
"evidence": "t: true }); const pkg = require(packageJsonPath); export const VERSION = pkg.version; // Pure: given a parsed bots.json",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-005",
"file": "dist/config.js",
"line": 30,
"nonRuntime": false
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"update_app_command\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"update_app_command\" 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": "update_app_command"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"delete_app_command\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"delete_app_command\" 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": "delete_app_command"
},
"data": {
"tags": [
"code-exec"
]
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "medium",
"confidence": "strong",
"untrustedInput": [
"get_message",
"read_messages"
],
"sensitiveSource": [],
"externalSink": [
"update_app_command",
"delete_app_command",
"create_webhook",
"update_webhook",
"delete_webhook",
"send_webhook_message",
"crosspost_message",
"lock_channel",
"unlock_channel",
"send_message",
"forward_message"
],
"selfContained": false,
"description": "Untrusted input can drive an external action even though no sensitive source is exposed."
}
],
"capabilities": [
{
"tool": "list_app_commands",
"tags": [],
"reasons": {}
},
{
"tool": "register_app_command",
"tags": [],
"reasons": {}
},
{
"tool": "update_app_command",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"command\""
]
}
},
{
"tool": "delete_app_command",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"command\""
]
}
},
{
"tool": "list_automod_rules",
"tags": [],
"reasons": {}
},
{
"tool": "create_automod_rule",
"tags": [],
"reasons": {}
},
{
"tool": "update_automod_rule",
"tags": [],
"reasons": {}
},
{
"tool": "delete_automod_rule",
"tags": [],
"reasons": {}
},
{
"tool": "save_blueprint",
"tags": [],
"reasons": {}
},
{
"tool": "list_blueprints",
"tags": [],
"reasons": {}
},
{
"tool": "get_blueprint",
"tags": [],
"reasons": {}
},
{
"tool": "delete_blueprint",
"tags": [],
"reasons": {}
},
{
"tool": "export_server_blueprint",
"tags": [],
"reasons": {}
},
{
"tool": "diff_blueprint",
"tags": [],
"reasons": {}
},
{
"tool": "list_reference_layouts",
"tags": [],
"reasons": {}
},
{
"tool": "get_reference_layout",
"tags": [],
"reasons": {}
},
{
"tool": "plan_server_build",
"tags": [],
"reasons": {}
},
{
"tool": "execute_build_plan",
"tags": [],
"reasons": {}
},
{
"tool": "create_invite",
"tags": [],
"reasons": {}
},
{
"tool": "list_invites",
"tags": [],
"reasons": {}
},
{
"tool": "get_invite",
"tags": [],
"reasons": {}
},
{
"tool": "delete_invite",
"tags": [],
"reasons": {}
},
{
"tool": "list_webhooks",
"tags": [],
"reasons": {}
},
{
"tool": "create_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "update_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\"",
"parameter \"webhook\""
]
}
},
{
"tool": "delete_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\"",
"parameter \"webhook\""
]
}
},
{
"tool": "send_webhook_message",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\"",
"parameter \"webhook\""
]
}
},
{
"tool": "list_emojis",
"tags": [],
"reasons": {}
},
{
"tool": "create_emoji",
"tags": [],
"reasons": {}
},
{
"tool": "update_emoji",
"tags": [],
"reasons": {}
},
{
"tool": "delete_emoji",
"tags": [],
"reasons": {}
},
{
"tool": "get_rate_limit_status",
"tags": [],
"reasons": {}
},
{
"tool": "get_bot_info",
"tags": [],
"reasons": {}
},
{
"tool": "run_setup_check",
"tags": [],
"reasons": {}
},
{
"tool": "list_events",
"tags": [],
"reasons": {}
},
{
"tool": "get_event",
"tags": [],
"reasons": {}
},
{
"tool": "create_event",
"tags": [],
"reasons": {}
},
{
"tool": "update_event",
"tags": [],
"reasons": {}
},
{
"tool": "cancel_event",
"tags": [],
"reasons": {}
},
{
"tool": "get_event_attendees",
"tags": [],
"reasons": {}
},
{
"tool": "list_stickers",
"tags": [],
"reasons": {}
},
{
"tool": "create_sticker",
"tags": [],
"reasons": {}
},
{
"tool": "update_sticker",
"tags": [],
"reasons": {}
},
{
"tool": "delete_sticker",
"tags": [],
"reasons": {}
},
{
"tool": "list_soundboard_sounds",
"tags": [],
"reasons": {}
},
{
"tool": "create_soundboard_sound",
"tags": [],
"reasons": {}
},
{
"tool": "update_soundboard_sound",
"tags": [],
"reasons": {}
},
{
"tool": "delete_soundboard_sound",
"tags": [],
"reasons": {}
},
{
"tool": "create_forum_post",
"tags": [],
"reasons": {}
},
{
"tool": "list_forum_posts",
"tags": [],
"reasons": {}
},
{
"tool": "reply_to_forum_post",
"tags": [],
"reasons": {}
},
{
"tool": "update_forum_post",
"tags": [],
"reasons": {}
},
{
"tool": "delete_forum_post",
"tags": [],
"reasons": {}
},
{
"tool": "create_forum_tag",
"tags": [],
"reasons": {}
},
{
"tool": "update_forum_tag",
"tags": [],
"reasons": {}
},
{
"tool": "delete_forum_tag",
"tags": [],
"reasons": {}
},
{
"tool": "update_channel",
"tags": [],
"reasons": {}
},
{
"tool": "delete_channel",
"tags": [],
"reasons": {}
},
{
"tool": "update_role",
"tags": [],
"reasons": {}
},
{
"tool": "delete_role",
"tags": [],
"reasons": {}
},
{
"tool": "edit_message",
"tags": [],
"reasons": {}
},
{
"tool": "pin_message",
"tags": [],
"reasons": {}
},
{
"tool": "unpin_message",
"tags": [],
"reasons": {}
},
{
"tool": "list_pinned_messages",
"tags": [],
"reasons": {}
},
{
"tool": "set_voice_channel_status",
"tags": [],
"reasons": {}
},
{
"tool": "update_member",
"tags": [],
"reasons": {}
},
{
"tool": "disconnect_member",
"tags": [],
"reasons": {}
},
{
"tool": "list_voice_members",
"tags": [],
"reasons": {}
},
{
"tool": "remove_role",
"tags": [],
"reasons": {}
},
{
"tool": "get_member_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "get_message",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "send_dm",
"tags": [],
"reasons": {}
},
{
"tool": "bulk_delete_messages",
"tags": [],
"reasons": {}
},
{
"tool": "crosspost_message",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"post_message\""
]
}
},
{
"tool": "schedule_message",
"tags": [],
"reasons": {}
},
{
"tool": "list_scheduled_messages",
"tags": [],
"reasons": {}
},
{
"tool": "cancel_scheduled_message",
"tags": [],
"reasons": {}
},
{
"tool": "timeout_member",
"tags": [],
"reasons": {}
},
{
"tool": "remove_timeout",
"tags": [],
"reasons": {}
},
{
"tool": "kick_member",
"tags": [],
"reasons": {}
},
{
"tool": "ban_member",
"tags": [],
"reasons": {}
},
{
"tool": "unban_member",
"tags": [],
"reasons": {}
},
{
"tool": "bulk_ban",
"tags": [],
"reasons": {}
},
{
"tool": "list_bans",
"tags": [],
"reasons": {}
},
{
"tool": "get_audit_log",
"tags": [],
"reasons": {}
},
{
"tool": "set_incident_actions",
"tags": [],
"reasons": {}
},
{
"tool": "get_channel_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "set_channel_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "clear_channel_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "lock_channel",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"send_message\""
]
}
},
{
"tool": "unlock_channel",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"send_message\""
]
}
},
{
"tool": "explain_permissions",
"tags": [],
"reasons": {}
},
{
"tool": "add_reactions",
"tags": [],
"reasons": {}
},
{
"tool": "remove_reaction",
"tags": [],
"reasons": {}
},
{
"tool": "clear_reactions",
"tags": [],
"reasons": {}
},
{
"tool": "get_reactions",
"tags": [],
"reasons": {}
},
{
"tool": "create_poll",
"tags": [],
"reasons": {}
},
{
"tool": "get_poll_results",
"tags": [],
"reasons": {}
},
{
"tool": "end_poll",
"tags": [],
"reasons": {}
},
{
"tool": "get_server_overview",
"tags": [],
"reasons": {}
},
{
"tool": "list_channels",
"tags": [],
"reasons": {}
},
{
"tool": "list_roles",
"tags": [],
"reasons": {}
},
{
"tool": "read_messages",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"read_message\""
]
}
},
{
"tool": "search_messages",
"tags": [],
"reasons": {}
},
{
"tool": "search_members",
"tags": [],
"reasons": {}
},
{
"tool": "get_member",
"tags": [],
"reasons": {}
},
{
"tool": "find",
"tags": [],
"reasons": {}
},
{
"tool": "subscribe_events",
"tags": [],
"reasons": {}
},
{
"tool": "get_recent_events",
"tags": [],
"reasons": {}
},
{
"tool": "list_event_subscriptions",
"tags": [],
"reasons": {}
},
{
"tool": "unsubscribe_events",
"tags": [],
"reasons": {}
},
{
"tool": "list_servers",
"tags": [],
"reasons": {}
},
{
"tool": "list_members",
"tags": [],
"reasons": {}
},
{
"tool": "get_role_members",
"tags": [],
"reasons": {}
},
{
"tool": "update_server",
"tags": [],
"reasons": {}
},
{
"tool": "get_server_preview",
"tags": [],
"reasons": {}
},
{
"tool": "get_server_widget",
"tags": [],
"reasons": {}
},
{
"tool": "update_server_widget",
"tags": [],
"reasons": {}
},
{
"tool": "get_welcome_screen",
"tags": [],
"reasons": {}
},
{
"tool": "update_welcome_screen",
"tags": [],
"reasons": {}
},
{
"tool": "get_onboarding",
"tags": [],
"reasons": {}
},
{
"tool": "update_onboarding",
"tags": [],
"reasons": {}
},
{
"tool": "list_integrations",
"tags": [],
"reasons": {}
},
{
"tool": "delete_integration",
"tags": [],
"reasons": {}
},
{
"tool": "list_server_templates",
"tags": [],
"reasons": {}
},
{
"tool": "create_server_template",
"tags": [],
"reasons": {}
},
{
"tool": "sync_server_template",
"tags": [],
"reasons": {}
},
{
"tool": "delete_server_template",
"tags": [],
"reasons": {}
},
{
"tool": "prune_members",
"tags": [],
"reasons": {}
},
{
"tool": "set_bot_presence",
"tags": [],
"reasons": {}
},
{
"tool": "list_stages",
"tags": [],
"reasons": {}
},
{
"tool": "start_stage",
"tags": [],
"reasons": {}
},
{
"tool": "update_stage",
"tags": [],
"reasons": {}
},
{
"tool": "end_stage",
"tags": [],
"reasons": {}
},
{
"tool": "get_channel",
"tags": [],
"reasons": {}
},
{
"tool": "clone_channel",
"tags": [],
"reasons": {}
},
{
"tool": "clone_role",
"tags": [],
"reasons": {}
},
{
"tool": "reorder_channels",
"tags": [],
"reasons": {}
},
{
"tool": "reorder_roles",
"tags": [],
"reasons": {}
},
{
"tool": "follow_announcement_channel",
"tags": [],
"reasons": {}
},
{
"tool": "bulk_update_roles",
"tags": [],
"reasons": {}
},
{
"tool": "create_thread",
"tags": [],
"reasons": {}
},
{
"tool": "list_threads",
"tags": [],
"reasons": {}
},
{
"tool": "get_thread",
"tags": [],
"reasons": {}
},
{
"tool": "update_thread",
"tags": [],
"reasons": {}
},
{
"tool": "delete_thread",
"tags": [],
"reasons": {}
},
{
"tool": "list_thread_members",
"tags": [],
"reasons": {}
},
{
"tool": "add_thread_member",
"tags": [],
"reasons": {}
},
{
"tool": "remove_thread_member",
"tags": [],
"reasons": {}
},
{
"tool": "send_message",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"send_message\""
]
}
},
{
"tool": "forward_message",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"forward_message\""
]
}
},
{
"tool": "create_channel",
"tags": [],
"reasons": {}
},
{
"tool": "create_role",
"tags": [],
"reasons": {}
},
{
"tool": "assign_role",
"tags": [],
"reasons": {}
},
{
"tool": "delete_message",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "afddb56fd7b5baf115e010e7def9164ec3a2e5d6f7827fdbb2cae672c6b1b1e2",
"stats": {
"tools": 155,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 2,
"medium": 8,
"low": 2,
"info": 0
}
}
}