Aibtc — 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": "@aibtc/mcp-server",
"source": {
"kind": "package",
"origin": "@aibtc/mcp-server"
},
"server": {
"name": "@aibtc/mcp-server"
}
},
"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": [
"untrusted-input",
"external-sink",
"sensitive-source",
"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: arxiv_search → bitflow_get_swap_targets → identity_transfer. 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": "arxiv_search → bitflow_get_swap_targets → identity_transfer"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"arxiv_search",
"bounty_my_posted",
"news_list_signals",
"ordinals_get_listings",
"ordinals_p2p_list_trades",
"ordinals_p2p_get_trade"
],
"sources": [
"bitflow_get_tokens",
"bitflow_get_swap_targets"
],
"sinks": [
"transfer_btc",
"identity_transfer",
"transfer_nft"
],
"path": [
"arxiv_search",
"bitflow_get_swap_targets",
"identity_transfer"
],
"edges": [
{
"from": "arxiv_search",
"to": "bitflow_get_swap_targets",
"kind": "agent-mediated"
},
{
"from": "bitflow_get_swap_targets",
"to": "identity_transfer",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/tools/pillar.tools.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/tools/pillar.tools.js:5`): 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/tools/pillar.tools.js"
},
"evidence": "; import { exec } from \"child_process\"; import * as fs from \"fs/promises\"; import * as path from \"path\"; import * as os",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/tools/pillar.tools.js",
"line": 5,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/services/defi.service.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/services/defi.service.js:265`): 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/services/defi.service.js"
},
"evidence": "const res = await fetch(`https://hermes.pyth.network/v2/updates/price/latest?ids[]=${id}&encoding=hex`);",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/services/defi.service.js",
"line": 265,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/services/scaffold.service.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/services/scaffold.service.js:1029`): 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/services/scaffold.service.js"
},
"evidence": "const response = await fetch('https://openrouter.ai/api/v1/chat/completions', { method: 'POST', headers: {",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/services/scaffold.service.js",
"line": 1029,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/tools/openrouter.tools.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/tools/openrouter.tools.js:112`): 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/tools/openrouter.tools.js"
},
"evidence": "const response = await fetch('https://openrouter.ai/api/v1/chat/completions', { method: 'POST', headers: {",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/tools/openrouter.tools.js",
"line": 112,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/tools/pillar.tools.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/tools/pillar.tools.js:544`): 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/tools/pillar.tools.js"
},
"evidence": "onst balanceRes = await fetch(`https://api.hiro.so/extended/v1/address/${walletAddress}/balances`); let sbtc",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/tools/pillar.tools.js",
"line": 544,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/tools/settings.tools.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/tools/settings.tools.js:209`): 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/tools/settings.tools.js"
},
"evidence": "const response = await fetch(\"https://registry.npmjs.org/@aibtc/mcp-server/latest\"); if (response.ok) {",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/tools/settings.tools.js",
"line": 209,
"nonRuntime": false
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"arxiv_search",
"bounty_my_posted",
"news_list_signals",
"ordinals_get_listings",
"ordinals_p2p_list_trades",
"ordinals_p2p_get_trade"
],
"sensitiveSource": [
"bitflow_get_tokens",
"bitflow_get_swap_targets"
],
"externalSink": [
"transfer_btc",
"identity_transfer",
"transfer_nft"
],
"selfContained": false,
"path": [
"arxiv_search",
"bitflow_get_swap_targets",
"identity_transfer"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: arxiv_search → bitflow_get_swap_targets → identity_transfer."
}
],
"capabilities": [
{
"tool": "arxiv_search",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "arxiv_compile_digest",
"tags": [],
"reasons": {}
},
{
"tool": "arxiv_list_digests",
"tags": [],
"reasons": {}
},
{
"tool": "get_btc_balance",
"tags": [],
"reasons": {}
},
{
"tool": "get_btc_fees",
"tags": [],
"reasons": {}
},
{
"tool": "get_btc_utxos",
"tags": [],
"reasons": {}
},
{
"tool": "transfer_btc",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"parameter \"recipient\""
]
}
},
{
"tool": "get_cardinal_utxos",
"tags": [],
"reasons": {}
},
{
"tool": "get_ordinal_utxos",
"tags": [],
"reasons": {}
},
{
"tool": "get_inscriptions_by_address",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_get_ticker",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_get_tokens",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"get_token\""
]
}
},
{
"tool": "bitflow_get_swap_targets",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"get_token\""
]
}
},
{
"tool": "bitflow_get_quote",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_get_routes",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_swap",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_get_keeper_contract",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_create_order",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_get_order",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_cancel_order",
"tags": [],
"reasons": {}
},
{
"tool": "bitflow_get_keeper_user",
"tags": [],
"reasons": {}
},
{
"tool": "lookup_bns_name",
"tags": [],
"reasons": {}
},
{
"tool": "reverse_bns_lookup",
"tags": [],
"reasons": {}
},
{
"tool": "get_bns_info",
"tags": [],
"reasons": {}
},
{
"tool": "check_bns_availability",
"tags": [],
"reasons": {}
},
{
"tool": "get_bns_price",
"tags": [],
"reasons": {}
},
{
"tool": "list_user_domains",
"tags": [],
"reasons": {}
},
{
"tool": "claim_bns_name_fast",
"tags": [],
"reasons": {}
},
{
"tool": "preorder_bns_name",
"tags": [],
"reasons": {}
},
{
"tool": "register_bns_name",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_list",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_get",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_submissions",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_create",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_submit",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_accept",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_paid",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_cancel",
"tags": [],
"reasons": {}
},
{
"tool": "bounty_my_posted",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "bounty_my_submissions",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_child_inscription_fee",
"tags": [],
"reasons": {}
},
{
"tool": "inscribe_child",
"tags": [],
"reasons": {}
},
{
"tool": "inscribe_child_reveal",
"tags": [],
"reasons": {}
},
{
"tool": "competition_submit_trade",
"tags": [],
"reasons": {}
},
{
"tool": "competition_status",
"tags": [],
"reasons": {}
},
{
"tool": "competition_list_trades",
"tags": [],
"reasons": {}
},
{
"tool": "competition_allowlist",
"tags": [],
"reasons": {}
},
{
"tool": "call_contract",
"tags": [],
"reasons": {}
},
{
"tool": "deploy_contract",
"tags": [],
"reasons": {}
},
{
"tool": "get_transaction_status",
"tags": [],
"reasons": {}
},
{
"tool": "call_read_only_function",
"tags": [],
"reasons": {}
},
{
"tool": "credentials_list",
"tags": [],
"reasons": {}
},
{
"tool": "credentials_get",
"tags": [],
"reasons": {}
},
{
"tool": "credentials_set",
"tags": [],
"reasons": {}
},
{
"tool": "credentials_delete",
"tags": [],
"reasons": {}
},
{
"tool": "credentials_unlock",
"tags": [],
"reasons": {}
},
{
"tool": "alex_get_swap_quote",
"tags": [],
"reasons": {}
},
{
"tool": "alex_swap",
"tags": [],
"reasons": {}
},
{
"tool": "alex_get_pool_info",
"tags": [],
"reasons": {}
},
{
"tool": "alex_list_pools",
"tags": [],
"reasons": {}
},
{
"tool": "zest_list_assets",
"tags": [],
"reasons": {}
},
{
"tool": "zest_get_position",
"tags": [],
"reasons": {}
},
{
"tool": "zest_supply",
"tags": [],
"reasons": {}
},
{
"tool": "zest_withdraw",
"tags": [],
"reasons": {}
},
{
"tool": "zest_borrow",
"tags": [],
"reasons": {}
},
{
"tool": "zest_enable_collateral",
"tags": [],
"reasons": {}
},
{
"tool": "zest_repay",
"tags": [],
"reasons": {}
},
{
"tool": "dual_stacking_status",
"tags": [],
"reasons": {}
},
{
"tool": "dual_stacking_get_rewards",
"tags": [],
"reasons": {}
},
{
"tool": "dual_stacking_enroll",
"tags": [],
"reasons": {}
},
{
"tool": "dual_stacking_opt_out",
"tags": [],
"reasons": {}
},
{
"tool": "earning_opportunities",
"tags": [],
"reasons": {}
},
{
"tool": "list_x402_endpoints",
"tags": [],
"reasons": {}
},
{
"tool": "execute_x402_endpoint",
"tags": [],
"reasons": {}
},
{
"tool": "probe_x402_endpoint",
"tags": [],
"reasons": {}
},
{
"tool": "register_identity",
"tags": [],
"reasons": {}
},
{
"tool": "get_identity",
"tags": [],
"reasons": {}
},
{
"tool": "give_feedback",
"tags": [],
"reasons": {}
},
{
"tool": "get_reputation",
"tags": [],
"reasons": {}
},
{
"tool": "request_validation",
"tags": [],
"reasons": {}
},
{
"tool": "get_validation_status",
"tags": [],
"reasons": {}
},
{
"tool": "get_validation_summary",
"tags": [],
"reasons": {}
},
{
"tool": "identity_get_last_id",
"tags": [],
"reasons": {}
},
{
"tool": "identity_get",
"tags": [],
"reasons": {}
},
{
"tool": "identity_get_metadata",
"tags": [],
"reasons": {}
},
{
"tool": "identity_register",
"tags": [],
"reasons": {}
},
{
"tool": "identity_set_uri",
"tags": [],
"reasons": {}
},
{
"tool": "identity_set_metadata",
"tags": [],
"reasons": {}
},
{
"tool": "identity_set_approval",
"tags": [],
"reasons": {}
},
{
"tool": "identity_set_wallet",
"tags": [],
"reasons": {}
},
{
"tool": "identity_unset_wallet",
"tags": [],
"reasons": {}
},
{
"tool": "identity_transfer",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"parameter \"recipient\""
]
}
},
{
"tool": "send_inbox_message_direct",
"tags": [],
"reasons": {}
},
{
"tool": "send_inbox_message",
"tags": [],
"reasons": {}
},
{
"tool": "inference_register_provider",
"tags": [],
"reasons": {}
},
{
"tool": "inference_update_provider",
"tags": [],
"reasons": {}
},
{
"tool": "inference_reveal_key",
"tags": [],
"reasons": {}
},
{
"tool": "inference_check_provider",
"tags": [],
"reasons": {}
},
{
"tool": "inference_list_providers",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_get_cycle_state",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_get_depositors",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_get_user_deposit",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_get_settlement",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_get_cycles_history",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_get_user_activity",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_deposit_stx",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_deposit_sbtc",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_cancel_stx",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_cancel_sbtc",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_close_deposits",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_settle",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_settle_with_refresh",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_cancel_cycle",
"tags": [],
"reasons": {}
},
{
"tool": "jingswap_get_prices",
"tags": [],
"reasons": {}
},
{
"tool": "legion_status",
"tags": [],
"reasons": {}
},
{
"tool": "legion_list_stories",
"tags": [],
"reasons": {}
},
{
"tool": "legion_get_story",
"tags": [],
"reasons": {}
},
{
"tool": "legion_my_position",
"tags": [],
"reasons": {}
},
{
"tool": "legion_contribute",
"tags": [],
"reasons": {}
},
{
"tool": "legion_sponsor",
"tags": [],
"reasons": {}
},
{
"tool": "legion_propose_story",
"tags": [],
"reasons": {}
},
{
"tool": "legion_vote",
"tags": [],
"reasons": {}
},
{
"tool": "legion_conclude",
"tags": [],
"reasons": {}
},
{
"tool": "legion_inscribe_story",
"tags": [],
"reasons": {}
},
{
"tool": "legion_inscribe_reveal",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_create",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_import",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_unlock",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_lock",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_status",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_fund_from_btc",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_claim_deposit",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_pay_invoice",
"tags": [],
"reasons": {}
},
{
"tool": "lightning_create_invoice",
"tags": [],
"reasons": {}
},
{
"tool": "get_btc_mempool_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_btc_transaction_status",
"tags": [],
"reasons": {}
},
{
"tool": "get_btc_address_txs",
"tags": [],
"reasons": {}
},
{
"tool": "news_list_signals",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "news_front_page",
"tags": [],
"reasons": {}
},
{
"tool": "news_leaderboard",
"tags": [],
"reasons": {}
},
{
"tool": "news_check_status",
"tags": [],
"reasons": {}
},
{
"tool": "news_list_beats",
"tags": [],
"reasons": {}
},
{
"tool": "news_claim_beat",
"tags": [],
"reasons": {}
},
{
"tool": "news_file_signal",
"tags": [],
"reasons": {}
},
{
"tool": "news_editor_review_signal",
"tags": [],
"reasons": {}
},
{
"tool": "news_editor_file_review",
"tags": [],
"reasons": {}
},
{
"tool": "news_register_editor",
"tags": [],
"reasons": {}
},
{
"tool": "news_deactivate_editor",
"tags": [],
"reasons": {}
},
{
"tool": "news_list_editors",
"tags": [],
"reasons": {}
},
{
"tool": "news_editor_check_earnings",
"tags": [],
"reasons": {}
},
{
"tool": "news_publisher_compile_brief",
"tags": [],
"reasons": {}
},
{
"tool": "news_file_correction",
"tags": [],
"reasons": {}
},
{
"tool": "news_publisher_set_beat_config",
"tags": [],
"reasons": {}
},
{
"tool": "news_record_editor_payout",
"tags": [],
"reasons": {}
},
{
"tool": "get_nft_holdings",
"tags": [],
"reasons": {}
},
{
"tool": "get_nft_metadata",
"tags": [],
"reasons": {}
},
{
"tool": "transfer_nft",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"parameter \"recipient\""
]
}
},
{
"tool": "get_nft_owner",
"tags": [],
"reasons": {}
},
{
"tool": "get_collection_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_nft_history",
"tags": [],
"reasons": {}
},
{
"tool": "nonce_health",
"tags": [],
"reasons": {}
},
{
"tool": "nonce_fill_gap",
"tags": [],
"reasons": {}
},
{
"tool": "tx_status_deep",
"tags": [],
"reasons": {}
},
{
"tool": "nonce_heal",
"tags": [],
"reasons": {}
},
{
"tool": "nostr_get_pubkey",
"tags": [],
"reasons": {}
},
{
"tool": "nostr_post",
"tags": [],
"reasons": {}
},
{
"tool": "nostr_read_feed",
"tags": [],
"reasons": {}
},
{
"tool": "nostr_search_tags",
"tags": [],
"reasons": {}
},
{
"tool": "nostr_get_profile",
"tags": [],
"reasons": {}
},
{
"tool": "nostr_set_profile",
"tags": [],
"reasons": {}
},
{
"tool": "nostr_relay_list",
"tags": [],
"reasons": {}
},
{
"tool": "openrouter_integration_guide",
"tags": [],
"reasons": {}
},
{
"tool": "openrouter_models",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_get_listings",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "ordinals_list_for_sale",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_list_for_sale_submit",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_buy",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_cancel_listing",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_p2p_list_trades",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "ordinals_p2p_get_trade",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "ordinals_p2p_my_trades",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_p2p_agents",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_p2p_create_offer",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_p2p_counter",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_p2p_transfer",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_p2p_cancel",
"tags": [],
"reasons": {}
},
{
"tool": "ordinals_p2p_psbt_swap",
"tags": [],
"reasons": {}
},
{
"tool": "get_taproot_address",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_inscription_fee",
"tags": [],
"reasons": {}
},
{
"tool": "inscribe",
"tags": [],
"reasons": {}
},
{
"tool": "inscribe_reveal",
"tags": [],
"reasons": {}
},
{
"tool": "get_inscription",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_key_generate",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_key_unlock",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_key_lock",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_key_info",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_direct_boost",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_direct_unwind",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_direct_supply",
"tags": [],
"reasons": {}
},
{
"tool": "pillar_direct_send",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "4819d7f26fda860cafa7144b942e7e460dd18779f11c512d78cb4cd4d4459a00",
"stats": {
"tools": 200,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 1,
"medium": 5,
"low": 0,
"info": 0
}
}
}