Voog — 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": "voog-mcp",
"source": {
"kind": "package",
"origin": "voog-mcp"
},
"server": {
"name": "voog-mcp"
}
},
"grade": "A",
"score": {
"score": 95,
"threatScore": 99,
"grade": "A",
"band": "A",
"categorySubtotals": {
"injection": 0,
"exfiltration": 1.2,
"permissions": 0,
"supply-chain": 0,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "threat",
"ruleId": "MTC-SRC-008",
"category": "exfiltration",
"severity": "low",
"confidence": "heuristic",
"rawWeight": 3,
"confidenceMult": 0.4,
"diminishingFactor": 1,
"appliedPenalty": 1.2
},
{
"kind": "client",
"term": "capability-exposure",
"level": "moderate",
"label": "capability blast radius (moderate) — client exposure if the model is manipulated",
"appliedPenalty": 3
},
{
"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": "moderate",
"reasons": [
"can send data / act on an external service"
],
"tags": [
"external-sink"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (111 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-007",
"title": "Unconstrained URL/host parameter \"url\" on \"webhook_create\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"webhook_create\" 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": "webhook_create",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"webhook_update\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"webhook_update\" 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": "webhook_update",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-SRC-008",
"title": "Hardcoded AWS access key id in test/example/packaging (tests/test_upload_validation.py)",
"category": "exfiltration",
"severity": "low",
"confidence": "heuristic",
"description": "A hardcoded AWS access key id (a live-looking credential hardcoded in shipped code) appears in `tests/test_upload_validation.py:113`. Verify whether this is a real credential; if so, remove and rotate it.",
"remediation": "Remove the secret, rotate it, and load credentials from the environment or a secret store.",
"location": {
"kind": "server",
"name": "tests/test_upload_validation.py"
},
"evidence": "AWS access key id: AKIA…(redacted)",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"secretType": "aws-access-key",
"file": "tests/test_upload_validation.py",
"line": 113
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (tests/test_cli_main.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_cli_main.py:251`): 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": "tests/test_cli_main.py"
},
"evidence": "and. return subprocess.run( [sys.executable, \"-m\", \"voog\", \"--config\", str(cfg), *argv],",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "tests/test_cli_main.py",
"line": 251,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (tests/test_mcp_integration.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_mcp_integration.py:59`): 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": "tests/test_mcp_integration.py"
},
"evidence": "} proc = subprocess.Popen( [str(VOOG_MCP_BIN)], stdin=subprocess.PIPE,",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "tests/test_mcp_integration.py",
"line": 59,
"nonRuntime": true
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "voog_list_sites",
"tags": [],
"reasons": {}
},
{
"tool": "voog_reload_config",
"tags": [],
"reasons": {}
},
{
"tool": "articles_list",
"tags": [],
"reasons": {}
},
{
"tool": "article_get",
"tags": [],
"reasons": {}
},
{
"tool": "article_create",
"tags": [],
"reasons": {}
},
{
"tool": "article_update",
"tags": [],
"reasons": {}
},
{
"tool": "article_publish",
"tags": [],
"reasons": {}
},
{
"tool": "article_delete",
"tags": [],
"reasons": {}
},
{
"tool": "article_set_data",
"tags": [],
"reasons": {}
},
{
"tool": "article_delete_data",
"tags": [],
"reasons": {}
},
{
"tool": "asset_upload",
"tags": [],
"reasons": {}
},
{
"tool": "cart_rules_list",
"tags": [],
"reasons": {}
},
{
"tool": "cart_rule_get",
"tags": [],
"reasons": {}
},
{
"tool": "cart_rule_create",
"tags": [],
"reasons": {}
},
{
"tool": "cart_rule_update",
"tags": [],
"reasons": {}
},
{
"tool": "cart_rule_delete",
"tags": [],
"reasons": {}
},
{
"tool": "categories_list",
"tags": [],
"reasons": {}
},
{
"tool": "category_get",
"tags": [],
"reasons": {}
},
{
"tool": "category_create",
"tags": [],
"reasons": {}
},
{
"tool": "category_update",
"tags": [],
"reasons": {}
},
{
"tool": "category_delete",
"tags": [],
"reasons": {}
},
{
"tool": "site_clone",
"tags": [],
"reasons": {}
},
{
"tool": "comments_list",
"tags": [],
"reasons": {}
},
{
"tool": "comment_delete",
"tags": [],
"reasons": {}
},
{
"tool": "comment_toggle_spam",
"tags": [],
"reasons": {}
},
{
"tool": "content_partial_update",
"tags": [],
"reasons": {}
},
{
"tool": "discounts_list",
"tags": [],
"reasons": {}
},
{
"tool": "discount_get",
"tags": [],
"reasons": {}
},
{
"tool": "discount_create",
"tags": [],
"reasons": {}
},
{
"tool": "discount_update",
"tags": [],
"reasons": {}
},
{
"tool": "discount_delete",
"tags": [],
"reasons": {}
},
{
"tool": "ecommerce_settings_get",
"tags": [],
"reasons": {}
},
{
"tool": "ecommerce_settings_update",
"tags": [],
"reasons": {}
},
{
"tool": "elements_list",
"tags": [],
"reasons": {}
},
{
"tool": "element_get",
"tags": [],
"reasons": {}
},
{
"tool": "element_definitions_list",
"tags": [],
"reasons": {}
},
{
"tool": "element_create",
"tags": [],
"reasons": {}
},
{
"tool": "element_update",
"tags": [],
"reasons": {}
},
{
"tool": "element_delete",
"tags": [],
"reasons": {}
},
{
"tool": "element_move",
"tags": [],
"reasons": {}
},
{
"tool": "layout_rename",
"tags": [],
"reasons": {}
},
{
"tool": "layout_create",
"tags": [],
"reasons": {}
},
{
"tool": "asset_replace",
"tags": [],
"reasons": {}
},
{
"tool": "layout_update",
"tags": [],
"reasons": {}
},
{
"tool": "layout_delete",
"tags": [],
"reasons": {}
},
{
"tool": "layout_asset_create",
"tags": [],
"reasons": {}
},
{
"tool": "layout_asset_update",
"tags": [],
"reasons": {}
},
{
"tool": "layout_asset_upload",
"tags": [],
"reasons": {}
},
{
"tool": "layout_asset_delete",
"tags": [],
"reasons": {}
},
{
"tool": "layouts_pull",
"tags": [],
"reasons": {}
},
{
"tool": "layouts_push",
"tags": [],
"reasons": {}
},
{
"tool": "voog_list_my_sites",
"tags": [],
"reasons": {}
},
{
"tool": "media_set_get",
"tags": [],
"reasons": {}
},
{
"tool": "media_set_update_asset_titles",
"tags": [],
"reasons": {}
},
{
"tool": "media_set_set_assets",
"tags": [],
"reasons": {}
},
{
"tool": "language_create",
"tags": [],
"reasons": {}
},
{
"tool": "language_delete",
"tags": [],
"reasons": {}
},
{
"tool": "languages_list",
"tags": [],
"reasons": {}
},
{
"tool": "nodes_list",
"tags": [],
"reasons": {}
},
{
"tool": "node_get",
"tags": [],
"reasons": {}
},
{
"tool": "node_update",
"tags": [],
"reasons": {}
},
{
"tool": "node_move",
"tags": [],
"reasons": {}
},
{
"tool": "node_relocate",
"tags": [],
"reasons": {}
},
{
"tool": "orders_list",
"tags": [],
"reasons": {}
},
{
"tool": "order_get",
"tags": [],
"reasons": {}
},
{
"tool": "pages_list",
"tags": [],
"reasons": {}
},
{
"tool": "page_get",
"tags": [],
"reasons": {}
},
{
"tool": "page_set_hidden",
"tags": [],
"reasons": {}
},
{
"tool": "page_set_layout",
"tags": [],
"reasons": {}
},
{
"tool": "page_delete",
"tags": [],
"reasons": {}
},
{
"tool": "page_create",
"tags": [],
"reasons": {}
},
{
"tool": "page_update",
"tags": [],
"reasons": {}
},
{
"tool": "page_set_data",
"tags": [],
"reasons": {}
},
{
"tool": "page_delete_data",
"tags": [],
"reasons": {}
},
{
"tool": "page_duplicate",
"tags": [],
"reasons": {}
},
{
"tool": "products_list",
"tags": [],
"reasons": {}
},
{
"tool": "product_get",
"tags": [],
"reasons": {}
},
{
"tool": "product_update",
"tags": [],
"reasons": {}
},
{
"tool": "product_create",
"tags": [],
"reasons": {}
},
{
"tool": "product_delete",
"tags": [],
"reasons": {}
},
{
"tool": "product_duplicate",
"tags": [],
"reasons": {}
},
{
"tool": "products_bulk_action",
"tags": [],
"reasons": {}
},
{
"tool": "product_set_images",
"tags": [],
"reasons": {}
},
{
"tool": "voog_admin_api_read",
"tags": [],
"reasons": {}
},
{
"tool": "voog_ecommerce_api_read",
"tags": [],
"reasons": {}
},
{
"tool": "voog_admin_api_call",
"tags": [],
"reasons": {}
},
{
"tool": "voog_ecommerce_api_call",
"tags": [],
"reasons": {}
},
{
"tool": "redirects_list",
"tags": [],
"reasons": {}
},
{
"tool": "redirect_add",
"tags": [],
"reasons": {}
},
{
"tool": "redirect_update",
"tags": [],
"reasons": {}
},
{
"tool": "redirect_delete",
"tags": [],
"reasons": {}
},
{
"tool": "voog_search",
"tags": [],
"reasons": {}
},
{
"tool": "shipping_methods_list",
"tags": [],
"reasons": {}
},
{
"tool": "gateways_list",
"tags": [],
"reasons": {}
},
{
"tool": "site_get",
"tags": [],
"reasons": {}
},
{
"tool": "site_update",
"tags": [],
"reasons": {}
},
{
"tool": "site_set_data",
"tags": [],
"reasons": {}
},
{
"tool": "site_delete_data",
"tags": [],
"reasons": {}
},
{
"tool": "pages_snapshot",
"tags": [],
"reasons": {}
},
{
"tool": "site_snapshot",
"tags": [],
"reasons": {}
},
{
"tool": "tags_list",
"tags": [],
"reasons": {}
},
{
"tool": "tag_get",
"tags": [],
"reasons": {}
},
{
"tool": "tag_delete",
"tags": [],
"reasons": {}
},
{
"tool": "text_get",
"tags": [],
"reasons": {}
},
{
"tool": "text_update",
"tags": [],
"reasons": {}
},
{
"tool": "page_add_content",
"tags": [],
"reasons": {}
},
{
"tool": "article_add_content",
"tags": [],
"reasons": {}
},
{
"tool": "webhooks_list",
"tags": [],
"reasons": {}
},
{
"tool": "webhook_create",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "webhook_update",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\"",
"parameter \"webhook\""
]
}
},
{
"tool": "webhook_delete",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\"",
"parameter \"webhook\""
]
}
}
],
"surfaceDigest": "8bb773c2c000a532640bd7466d7bd69ed87e5e8810dc4c121b25d62cdd982797",
"stats": {
"tools": 111,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 0,
"medium": 2,
"low": 3,
"info": 0
}
}
}