Bootpay — 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": "@bootpay/mcp",
"source": {
"kind": "package",
"origin": "@bootpay/mcp"
},
"server": {
"name": "@bootpay/mcp"
}
},
"grade": "C",
"score": {
"score": 73,
"threatScore": 84,
"grade": "C",
"band": "C",
"categorySubtotals": {
"injection": 15.75,
"exfiltration": 0,
"permissions": 0,
"supply-chain": 0,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "threat",
"ruleId": "MTC-INJ-SCHEMA-1",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"rawWeight": 9,
"confidenceMult": 0.7,
"diminishingFactor": 1,
"appliedPenalty": 6.3
},
{
"kind": "threat",
"ruleId": "MTC-SRC-009",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"rawWeight": 9,
"confidenceMult": 0.7,
"diminishingFactor": 1,
"appliedPenalty": 6.3
},
{
"kind": "threat",
"ruleId": "MTC-SRC-009",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"rawWeight": 9,
"confidenceMult": 0.7,
"diminishingFactor": 0.5,
"appliedPenalty": 3.15
},
{
"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": "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": "critical",
"reasons": [
"ingests untrusted external content (a prompt-injection entry point)",
"can send data / act on an external service",
"can execute shell commands or code",
"untrusted input can reach code execution"
],
"tags": [
"untrusted-input",
"code-exec",
"external-sink"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (163 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-SRC-002",
"title": "Shell/command execution in server code (dist/admin/tools/auth.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/admin/tools/auth.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/admin/tools/auth.js"
},
"evidence": "{ execSync } from 'node:child_process'; import { startCallbackServer } from '../auth/callback-server.js'; import { start",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/admin/tools/auth.js",
"line": 2,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/admin/tools/commerce-code/index.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/admin/tools/commerce-code/index.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/admin/tools/commerce-code/index.js"
},
"evidence": "{ execSync } from 'node:child_process'; import { formatErrorForMcp } from '../../errors/index.js'; import { startPayment",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/admin/tools/commerce-code/index.js",
"line": 3,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/admin/tools/generate-code.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/admin/tools/generate-code.js:1461`): 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/admin/tools/generate-code.js"
},
"evidence": "ta: any) => { fetch('https://your-server.com/api/confirm', { method: 'POST', headers:",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/admin/tools/generate-code.js",
"line": 1461,
"nonRuntime": false
}
},
{
"ruleId": "MTC-INJ-SCHEMA-1",
"title": "Description names a credential store the tool cannot reach",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"list_api_scopes\" describes a credential store (SSH keys, cloud credentials, a keychain or an equivalent) that nothing in its input schema can address. A tool's interface is the honest statement of what it touches; prose that reaches past it is addressed to the model, not to a reader.",
"remediation": "Remove the reference, or expose the target as an explicit, validated parameter so the client can see and consent to what the tool reads.",
"location": {
"kind": "tool",
"name": "list_api_scopes",
"field": "description"
},
"evidence": "KeyChain",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {}
},
{
"ruleId": "MTC-SRC-009",
"title": "Untrusted input concatenated into a command sink (dist/admin/tools/auth.js)",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/admin/tools/auth.js:86`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/admin/tools/auth.js"
},
"evidence": "try { execSync(`open \"${loginUrl}\"`, { stdio: 'ignore' }); browserOpened = true;",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-009",
"file": "dist/admin/tools/auth.js",
"line": 86,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-009",
"title": "Untrusted input concatenated into a command sink (dist/admin/tools/commerce-code/index.js)",
"category": "injection",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/admin/tools/commerce-code/index.js:223`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/admin/tools/commerce-code/index.js"
},
"evidence": "try { execSync(`open \"${pageUrl}\"`, { stdio: 'ignore' }); browserOpened = true;",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-009",
"file": "dist/admin/tools/commerce-code/index.js",
"line": 223,
"nonRuntime": false
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "login",
"tags": [],
"reasons": {}
},
{
"tool": "browser_login",
"tags": [],
"reasons": {}
},
{
"tool": "logout",
"tags": [],
"reasons": {}
},
{
"tool": "list_projects",
"tags": [],
"reasons": {}
},
{
"tool": "switch_project",
"tags": [],
"reasons": {}
},
{
"tool": "browser_select_project",
"tags": [],
"reasons": {}
},
{
"tool": "list_catalogs",
"tags": [],
"reasons": {}
},
{
"tool": "get_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "create_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "update_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "delete_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "add_products_to_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "list_categories",
"tags": [],
"reasons": {}
},
{
"tool": "create_category",
"tags": [],
"reasons": {}
},
{
"tool": "update_category",
"tags": [],
"reasons": {}
},
{
"tool": "delete_category",
"tags": [],
"reasons": {}
},
{
"tool": "reorder_categories",
"tags": [],
"reasons": {}
},
{
"tool": "generate_commerce_code",
"tags": [],
"reasons": {}
},
{
"tool": "browser_select_payment_method",
"tags": [],
"reasons": {}
},
{
"tool": "get_commerce_context",
"tags": [],
"reasons": {}
},
{
"tool": "get_commerce_keys",
"tags": [],
"reasons": {}
},
{
"tool": "list_content_blocks",
"tags": [],
"reasons": {}
},
{
"tool": "create_content_block",
"tags": [],
"reasons": {}
},
{
"tool": "update_content_block",
"tags": [],
"reasons": {}
},
{
"tool": "delete_content_block",
"tags": [],
"reasons": {}
},
{
"tool": "list_content_block_products",
"tags": [],
"reasons": {}
},
{
"tool": "list_content_templates",
"tags": [],
"reasons": {}
},
{
"tool": "create_content_template",
"tags": [],
"reasons": {}
},
{
"tool": "delete_content_template",
"tags": [],
"reasons": {}
},
{
"tool": "list_digital_codes",
"tags": [],
"reasons": {}
},
{
"tool": "register_digital_codes",
"tags": [],
"reasons": {}
},
{
"tool": "disable_digital_code",
"tags": [],
"reasons": {}
},
{
"tool": "generate_payment_code",
"tags": [],
"reasons": {}
},
{
"tool": "upload_product_images",
"tags": [],
"reasons": {}
},
{
"tool": "set_token",
"tags": [],
"reasons": {}
},
{
"tool": "get_integration_context",
"tags": [],
"reasons": {}
},
{
"tool": "list_api_scopes",
"tags": [],
"reasons": {}
},
{
"tool": "list_keychains",
"tags": [],
"reasons": {}
},
{
"tool": "create_keychain",
"tags": [],
"reasons": {}
},
{
"tool": "delete_keychain",
"tags": [],
"reasons": {}
},
{
"tool": "get_mall_setting",
"tags": [],
"reasons": {}
},
{
"tool": "update_mall_setting",
"tags": [],
"reasons": {}
},
{
"tool": "get_payment_settings",
"tags": [],
"reasons": {}
},
{
"tool": "activate_payment_method",
"tags": [],
"reasons": {}
},
{
"tool": "set_sandbox_mode",
"tags": [],
"reasons": {}
},
{
"tool": "update_payment_resource",
"tags": [],
"reasons": {}
},
{
"tool": "set_payment_mode",
"tags": [],
"reasons": {}
},
{
"tool": "get_product_info_notice_forms",
"tags": [],
"reasons": {}
},
{
"tool": "list_products",
"tags": [],
"reasons": {}
},
{
"tool": "get_product",
"tags": [],
"reasons": {}
},
{
"tool": "create_product",
"tags": [],
"reasons": {}
},
{
"tool": "update_product",
"tags": [],
"reasons": {}
},
{
"tool": "delete_product",
"tags": [],
"reasons": {}
},
{
"tool": "create_test_products",
"tags": [],
"reasons": {}
},
{
"tool": "create_project",
"tags": [],
"reasons": {}
},
{
"tool": "list_subscription_settings",
"tags": [],
"reasons": {}
},
{
"tool": "list_delivery_shippings",
"tags": [],
"reasons": {}
},
{
"tool": "create_delivery_shipping",
"tags": [],
"reasons": {}
},
{
"tool": "create_subscription_setting",
"tags": [],
"reasons": {}
},
{
"tool": "list_delivery_shipping_bundles",
"tags": [],
"reasons": {}
},
{
"tool": "get_product_form_setting",
"tags": [],
"reasons": {}
},
{
"tool": "get_auth_status",
"tags": [],
"reasons": {}
},
{
"tool": "create_seller",
"tags": [],
"reasons": {}
},
{
"tool": "search_sellers",
"tags": [],
"reasons": {}
},
{
"tool": "get_seller",
"tags": [],
"reasons": {}
},
{
"tool": "update_seller",
"tags": [],
"reasons": {}
},
{
"tool": "setup_test_mall_categories",
"tags": [],
"reasons": {}
},
{
"tool": "setup_test_mall_delivery",
"tags": [],
"reasons": {}
},
{
"tool": "setup_test_mall_products",
"tags": [],
"reasons": {}
},
{
"tool": "setup_test_mall_catalogs",
"tags": [],
"reasons": {}
},
{
"tool": "setup_test_mall_status",
"tags": [],
"reasons": {}
},
{
"tool": "setup_test_mall_reset",
"tags": [],
"reasons": {}
},
{
"tool": "update_test_mall_discounts",
"tags": [],
"reasons": {}
},
{
"tool": "list_widgets",
"tags": [],
"reasons": {}
},
{
"tool": "get_widget",
"tags": [],
"reasons": {}
},
{
"tool": "create_widget",
"tags": [],
"reasons": {}
},
{
"tool": "get_widget_default_styles",
"tags": [],
"reasons": {}
},
{
"tool": "configure_widget",
"tags": [],
"reasons": {}
},
{
"tool": "update_widget",
"tags": [],
"reasons": {}
},
{
"tool": "delete_widget",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_login",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_session",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_logout",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_cart",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_add_cart_item",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_update_cart_item",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_remove_cart_item",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_update_cart_item_period",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_clear_cart",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_merge_guest_cart",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_checkout_cart",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_validate_cart_items",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_calculate_guest_delivery_fee",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_preview_guest_order",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_list_coupons",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_list_available_coupons",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_preview_coupon_discount",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_download_coupon",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "commerce_list_my_orders",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_my_order",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_update_my_order_address",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_list_my_subscriptions",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_my_subscription",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_update_my_subscription",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_recover_my_subscription",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_resume_my_subscription",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_subscription_recovery_info",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_pause_my_subscription",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_retry_my_subscription_bill",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_order_result",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_order_subscription_result",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_create_order_cancel",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_order_receipt_preview",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_create_order_receipt",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_verify_order_receipt",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_calculate_subscription_cancel",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_request_subscription_cancel_approval",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_prepare_order",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_point_balance",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_list_point_transactions",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_preview_point_usage",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_calculate_point_limit",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_calculate_price",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_list_products",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_product",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_list_categories",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_reviews",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_review_stats",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_terms",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_list_product_reviews",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_create_product_review",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_update_product_review",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_delete_product_review",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_review_reply",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_create_review_reply",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_update_review_reply",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_delete_review_reply",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_add_review_helpful",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_remove_review_helpful",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_check_review_helpful",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_report_review",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_validate_credentials",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_store",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_store_detail",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_join",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_check_id_exist",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_check_email_exist",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_check_phone_exist",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_check_business_number_exist",
"tags": [],
"reasons": {}
},
{
"tool": "set_commerce_credentials",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_get_products",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_create_product",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_update_product",
"tags": [],
"reasons": {}
},
{
"tool": "commerce_status",
"tags": [],
"reasons": {}
},
{
"tool": "get_cs_guide",
"tags": [],
"reasons": {}
},
{
"tool": "get_csp_allowlist",
"tags": [],
"reasons": {}
},
{
"tool": "detect_project_stack",
"tags": [],
"reasons": {}
},
{
"tool": "get_doc",
"tags": [],
"reasons": {}
},
{
"tool": "list_docs",
"tags": [],
"reasons": {}
},
{
"tool": "get_sdk_versions",
"tags": [],
"reasons": {}
},
{
"tool": "search_docs",
"tags": [],
"reasons": {}
},
{
"tool": "get_setup_checklist",
"tags": [],
"reasons": {}
},
{
"tool": "get_troubleshooting",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "61ef81a09dc123efb4614dbc64a17b5392cdb8561866dc71ba7f12306db3b83e",
"stats": {
"tools": 163,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 2,
"medium": 4,
"low": 0,
"info": 0
}
}
}