Nostr Bray — 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": "nostr-bray",
"source": {
"kind": "package",
"origin": "nostr-bray"
},
"server": {
"name": "nostr-bray"
}
},
"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",
"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": [
"code-exec",
"untrusted-input",
"external-sink",
"sensitive-source"
]
},
"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: article-read → trust-spoken-challenge → handler-publish. 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": "article-read → trust-spoken-challenge → handler-publish"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"identity-backup",
"nip05-relays",
"privacy-read-proof",
"relay-info",
"relay-count",
"social-profile-get",
"dm-conversation",
"social-notifications",
"social-feed",
"feed-by-name",
"contacts-get",
"nip-read",
"group-info",
"group-chat",
"article-read",
"hashtag-feed",
"calendar-read"
],
"sources": [
"trust-spoken-challenge",
"trust-spoken-verify"
],
"sinks": [
"handler-publish",
"marketplace-probe",
"publish-event"
],
"path": [
"article-read",
"trust-spoken-challenge",
"handler-publish"
],
"edges": [
{
"from": "article-read",
"to": "trust-spoken-challenge",
"kind": "agent-mediated"
},
{
"from": "trust-spoken-challenge",
"to": "handler-publish",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"handler-publish\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"handler-publish\" 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": "handler-publish"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/util/handlers.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/util/handlers.js:288`): 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/util/handlers.js"
},
"evidence": "const response = await fetch('https://raw.githubusercontent.com/nostr-protocol/nips/master/README.md', { signal",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/util/handlers.js",
"line": 288,
"nonRuntime": false
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"marketplace-probe\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"marketplace-probe\" 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": "marketplace-probe",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"relay-info\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"relay-info\" 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": "relay-info",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"stdio_command\" on \"handler-publish\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"handler-publish\" takes a command-shaped parameter \"stdio_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": "handler-publish",
"field": "inputSchema.properties.stdio_command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "stdio_command"
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"handler-publish\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"handler-publish\" 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": "handler-publish"
},
"data": {
"tags": [
"code-exec"
]
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"identity-backup",
"nip05-relays",
"privacy-read-proof",
"relay-info",
"relay-count",
"social-profile-get",
"dm-conversation",
"social-notifications",
"social-feed",
"feed-by-name",
"contacts-get",
"nip-read",
"group-info",
"group-chat",
"article-read",
"hashtag-feed",
"calendar-read"
],
"sensitiveSource": [
"trust-spoken-challenge",
"trust-spoken-verify"
],
"externalSink": [
"handler-publish",
"marketplace-probe",
"publish-event"
],
"selfContained": false,
"path": [
"article-read",
"trust-spoken-challenge",
"handler-publish"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: article-read → trust-spoken-challenge → handler-publish."
}
],
"capabilities": [
{
"tool": "search-actions",
"tags": [],
"reasons": {}
},
{
"tool": "execute-action",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-send",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-check",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-reply",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-ack",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-status",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-cancel",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-refuse",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-failure",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-query",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-capability-publish",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-capability-discover",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-capability-read",
"tags": [],
"reasons": {}
},
{
"tool": "dispatch-propose",
"tags": [],
"reasons": {}
},
{
"tool": "handler-publish",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"command\""
]
}
},
{
"tool": "handler-discover",
"tags": [],
"reasons": {}
},
{
"tool": "whoami",
"tags": [],
"reasons": {}
},
{
"tool": "identity-create",
"tags": [],
"reasons": {}
},
{
"tool": "identity-derive",
"tags": [],
"reasons": {}
},
{
"tool": "identity-derive-persona",
"tags": [],
"reasons": {}
},
{
"tool": "identity-switch",
"tags": [],
"reasons": {}
},
{
"tool": "identity-list",
"tags": [],
"reasons": {}
},
{
"tool": "identity-prove",
"tags": [],
"reasons": {}
},
{
"tool": "identity-backup-shamir",
"tags": [],
"reasons": {}
},
{
"tool": "identity-restore-shamir",
"tags": [],
"reasons": {}
},
{
"tool": "identity-backup",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "identity-restore",
"tags": [],
"reasons": {}
},
{
"tool": "identity-migrate",
"tags": [],
"reasons": {}
},
{
"tool": "identity-accept-migration",
"tags": [],
"reasons": {}
},
{
"tool": "nip05-lookup",
"tags": [],
"reasons": {}
},
{
"tool": "nip05-verify",
"tags": [],
"reasons": {}
},
{
"tool": "nip05-relays",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "marketplace-discover",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-inspect",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-search",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-reputation",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-compare",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-probe",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"http_request\""
]
}
},
{
"tool": "marketplace-pay",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-call",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-announce",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-update",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-retire",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace-credentials-clear",
"tags": [],
"reasons": {}
},
{
"tool": "listing-create",
"tags": [],
"reasons": {}
},
{
"tool": "listing-read",
"tags": [],
"reasons": {}
},
{
"tool": "listing-search",
"tags": [],
"reasons": {}
},
{
"tool": "listing-close",
"tags": [],
"reasons": {}
},
{
"tool": "label-create",
"tags": [],
"reasons": {}
},
{
"tool": "label-self",
"tags": [],
"reasons": {}
},
{
"tool": "label-read",
"tags": [],
"reasons": {}
},
{
"tool": "label-search",
"tags": [],
"reasons": {}
},
{
"tool": "label-remove",
"tags": [],
"reasons": {}
},
{
"tool": "list-mute",
"tags": [],
"reasons": {}
},
{
"tool": "list-mute-read",
"tags": [],
"reasons": {}
},
{
"tool": "list-check-muted",
"tags": [],
"reasons": {}
},
{
"tool": "list-pin",
"tags": [],
"reasons": {}
},
{
"tool": "list-pin-read",
"tags": [],
"reasons": {}
},
{
"tool": "list-followset-create",
"tags": [],
"reasons": {}
},
{
"tool": "list-followset-manage",
"tags": [],
"reasons": {}
},
{
"tool": "list-followset-read",
"tags": [],
"reasons": {}
},
{
"tool": "list-bookmark",
"tags": [],
"reasons": {}
},
{
"tool": "list-bookmark-read",
"tags": [],
"reasons": {}
},
{
"tool": "moderation-filter",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-commit",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-open",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-prove-range",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-verify-range",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-prove-age",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-verify-age",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-prove-threshold",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-verify-threshold",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-publish-proof",
"tags": [],
"reasons": {}
},
{
"tool": "privacy-read-proof",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "relay-discover",
"tags": [],
"reasons": {}
},
{
"tool": "relay-nip-search",
"tags": [],
"reasons": {}
},
{
"tool": "relay-compare",
"tags": [],
"reasons": {}
},
{
"tool": "relay-diversity",
"tags": [],
"reasons": {}
},
{
"tool": "relay-recommend",
"tags": [],
"reasons": {}
},
{
"tool": "relay-list",
"tags": [],
"reasons": {}
},
{
"tool": "relay-set",
"tags": [],
"reasons": {}
},
{
"tool": "relay-add",
"tags": [],
"reasons": {}
},
{
"tool": "relay-query",
"tags": [],
"reasons": {}
},
{
"tool": "relay-info",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "relay-count",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "cast-spell",
"tags": [],
"reasons": {}
},
{
"tool": "relay-auth",
"tags": [],
"reasons": {}
},
{
"tool": "safety-configure",
"tags": [],
"reasons": {}
},
{
"tool": "safety-activate",
"tags": [],
"reasons": {}
},
{
"tool": "canary-session-create",
"tags": [],
"reasons": {}
},
{
"tool": "canary-session-current",
"tags": [],
"reasons": {}
},
{
"tool": "canary-session-verify",
"tags": [],
"reasons": {}
},
{
"tool": "canary-group-create",
"tags": [],
"reasons": {}
},
{
"tool": "canary-group-join",
"tags": [],
"reasons": {}
},
{
"tool": "canary-group-current",
"tags": [],
"reasons": {}
},
{
"tool": "canary-group-verify",
"tags": [],
"reasons": {}
},
{
"tool": "canary-group-members",
"tags": [],
"reasons": {}
},
{
"tool": "canary-beacon-create",
"tags": [],
"reasons": {}
},
{
"tool": "canary-beacon-check",
"tags": [],
"reasons": {}
},
{
"tool": "canary-duress-signal",
"tags": [],
"reasons": {}
},
{
"tool": "canary-duress-detect",
"tags": [],
"reasons": {}
},
{
"tool": "signet-badge",
"tags": [],
"reasons": {}
},
{
"tool": "signet-vouch",
"tags": [],
"reasons": {}
},
{
"tool": "signet-credentials",
"tags": [],
"reasons": {}
},
{
"tool": "signet-policy-check",
"tags": [],
"reasons": {}
},
{
"tool": "signet-policy-set",
"tags": [],
"reasons": {}
},
{
"tool": "signet-verifiers",
"tags": [],
"reasons": {}
},
{
"tool": "signet-challenge",
"tags": [],
"reasons": {}
},
{
"tool": "social-post",
"tags": [],
"reasons": {}
},
{
"tool": "social-reply",
"tags": [],
"reasons": {}
},
{
"tool": "social-react",
"tags": [],
"reasons": {}
},
{
"tool": "social-delete",
"tags": [],
"reasons": {}
},
{
"tool": "social-repost",
"tags": [],
"reasons": {}
},
{
"tool": "social-profile-get",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "social-profile-set",
"tags": [],
"reasons": {}
},
{
"tool": "dm-send",
"tags": [],
"reasons": {}
},
{
"tool": "dm-read",
"tags": [],
"reasons": {}
},
{
"tool": "dm-by-name",
"tags": [],
"reasons": {}
},
{
"tool": "dm-conversation",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"read_dm\""
]
}
},
{
"tool": "social-notifications",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "social-feed",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "feed-by-name",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "profile-by-name",
"tags": [],
"reasons": {}
},
{
"tool": "contacts-get",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "contacts-search",
"tags": [],
"reasons": {}
},
{
"tool": "contacts-follow",
"tags": [],
"reasons": {}
},
{
"tool": "contacts-unfollow",
"tags": [],
"reasons": {}
},
{
"tool": "nip-publish",
"tags": [],
"reasons": {}
},
{
"tool": "nip-read",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "blossom-upload",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-list",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-delete",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-mirror",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-check",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-discover",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-verify",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-repair",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-usage",
"tags": [],
"reasons": {}
},
{
"tool": "blossom-servers",
"tags": [],
"reasons": {}
},
{
"tool": "group-info",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "group-chat",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "group-send",
"tags": [],
"reasons": {}
},
{
"tool": "group-members",
"tags": [],
"reasons": {}
},
{
"tool": "group-inspect",
"tags": [],
"reasons": {}
},
{
"tool": "group-admins",
"tags": [],
"reasons": {}
},
{
"tool": "group-roles",
"tags": [],
"reasons": {}
},
{
"tool": "group-create",
"tags": [],
"reasons": {}
},
{
"tool": "group-update",
"tags": [],
"reasons": {}
},
{
"tool": "group-add-user",
"tags": [],
"reasons": {}
},
{
"tool": "group-remove-user",
"tags": [],
"reasons": {}
},
{
"tool": "group-invite-create",
"tags": [],
"reasons": {}
},
{
"tool": "group-join",
"tags": [],
"reasons": {}
},
{
"tool": "group-leave",
"tags": [],
"reasons": {}
},
{
"tool": "group-delete-event",
"tags": [],
"reasons": {}
},
{
"tool": "group-delete",
"tags": [],
"reasons": {}
},
{
"tool": "group-forum-topics",
"tags": [],
"reasons": {}
},
{
"tool": "group-forum-topic-create",
"tags": [],
"reasons": {}
},
{
"tool": "group-forum-comments",
"tags": [],
"reasons": {}
},
{
"tool": "group-forum-comment",
"tags": [],
"reasons": {}
},
{
"tool": "article-publish",
"tags": [],
"reasons": {}
},
{
"tool": "article-read",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "article-list",
"tags": [],
"reasons": {}
},
{
"tool": "search-notes",
"tags": [],
"reasons": {}
},
{
"tool": "search-profiles",
"tags": [],
"reasons": {}
},
{
"tool": "hashtag-feed",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "calendar-create",
"tags": [],
"reasons": {}
},
{
"tool": "calendar-read",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "calendar-rsvp",
"tags": [],
"reasons": {}
},
{
"tool": "badge-create",
"tags": [],
"reasons": {}
},
{
"tool": "badge-award",
"tags": [],
"reasons": {}
},
{
"tool": "badge-accept",
"tags": [],
"reasons": {}
},
{
"tool": "badge-list",
"tags": [],
"reasons": {}
},
{
"tool": "community-create",
"tags": [],
"reasons": {}
},
{
"tool": "community-feed",
"tags": [],
"reasons": {}
},
{
"tool": "community-post",
"tags": [],
"reasons": {}
},
{
"tool": "community-approve",
"tags": [],
"reasons": {}
},
{
"tool": "community-list",
"tags": [],
"reasons": {}
},
{
"tool": "wiki-publish",
"tags": [],
"reasons": {}
},
{
"tool": "wiki-read",
"tags": [],
"reasons": {}
},
{
"tool": "wiki-list",
"tags": [],
"reasons": {}
},
{
"tool": "post-schedule",
"tags": [],
"reasons": {}
},
{
"tool": "post-queue-list",
"tags": [],
"reasons": {}
},
{
"tool": "publish-event",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"publish_event\""
]
}
},
{
"tool": "post-queue-cancel",
"tags": [],
"reasons": {}
},
{
"tool": "sync-plan",
"tags": [],
"reasons": {}
},
{
"tool": "trust-attest",
"tags": [],
"reasons": {}
},
{
"tool": "trust-claim",
"tags": [],
"reasons": {}
},
{
"tool": "trust-read",
"tags": [],
"reasons": {}
},
{
"tool": "trust-verify",
"tags": [],
"reasons": {}
},
{
"tool": "trust-revoke",
"tags": [],
"reasons": {}
},
{
"tool": "trust-request",
"tags": [],
"reasons": {}
},
{
"tool": "trust-request-list",
"tags": [],
"reasons": {}
},
{
"tool": "trust-proof-publish",
"tags": [],
"reasons": {}
},
{
"tool": "trust-ring-prove",
"tags": [],
"reasons": {}
},
{
"tool": "trust-ring-verify",
"tags": [],
"reasons": {}
},
{
"tool": "trust-spoken-challenge",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"parameter \"secret\""
]
}
},
{
"tool": "trust-spoken-verify",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"parameter \"secret\""
]
}
},
{
"tool": "trust-attest-parse",
"tags": [],
"reasons": {}
},
{
"tool": "trust-attest-filter",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "46d56d7773e64d793eee46a968f87a47b9d94028d5abfce1a425e14fa7087f39",
"stats": {
"tools": 200,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 1,
"medium": 4,
"low": 1,
"info": 0
}
}
}