Raw scan report

Myindai Screenshot — the complete, unedited output of the deterministic mcptrustchecker engine v1.7.0, scanned . Every finding, capability tag and score component below is exactly what the engine produced — no AI, no post-processing.

← Back to the scan page
{
  "tool": {
    "name": "mcptrustchecker",
    "version": "1.7.0",
    "methodologyVersion": "mcptrustchecker-1.7"
  },
  "target": {
    "id": "myindai-screenshot-mcp",
    "source": {
      "kind": "package",
      "origin": "myindai-screenshot-mcp"
    },
    "server": {
      "name": "myindai-screenshot-mcp"
    }
  },
  "grade": "B",
  "score": {
    "score": 89,
    "threatScore": 100,
    "grade": "B",
    "band": "B",
    "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": "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.7"
  },
  "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": [
      "sensitive-source",
      "untrusted-input",
      "external-sink",
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (25 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: get_asset → generate_screenshot → auto_video. 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": "get_asset → generate_screenshot → auto_video"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "get_asset"
        ],
        "sources": [
          "generate_screenshot",
          "make_showcase"
        ],
        "sinks": [
          "auto_video"
        ],
        "path": [
          "get_asset",
          "generate_screenshot",
          "auto_video"
        ],
        "edges": [
          {
            "from": "get_asset",
            "to": "generate_screenshot",
            "kind": "agent-mediated"
          },
          {
            "from": "generate_screenshot",
            "to": "auto_video",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/video/ffmpeg.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/video/ffmpeg.js:1`): 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/video/ffmpeg.js"
      },
      "evidence": "child_process",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/video/ffmpeg.js",
        "line": 1
      }
    },
    {
      "ruleId": "MTC-CAP-008",
      "title": "Unconstrained path parameter \"output_path\" on \"generate_screenshot\"",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"generate_screenshot\" takes a path parameter \"output_path\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
      "remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
      "location": {
        "kind": "tool",
        "name": "generate_screenshot",
        "field": "inputSchema.properties.output_path"
      },
      "data": {
        "param": "output_path"
      }
    },
    {
      "ruleId": "MTC-CAP-008",
      "title": "Unconstrained path parameter \"output_path\" on \"make_showcase\"",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"make_showcase\" takes a path parameter \"output_path\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
      "remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
      "location": {
        "kind": "tool",
        "name": "make_showcase",
        "field": "inputSchema.properties.output_path"
      },
      "data": {
        "param": "output_path"
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "get_asset"
      ],
      "sensitiveSource": [
        "generate_screenshot",
        "make_showcase"
      ],
      "externalSink": [
        "auto_video"
      ],
      "selfContained": false,
      "path": [
        "get_asset",
        "generate_screenshot",
        "auto_video"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: get_asset → generate_screenshot → auto_video."
    }
  ],
  "capabilities": [
    {
      "tool": "render_screenshot",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_screenshot",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "parameter \"path\""
        ]
      }
    },
    {
      "tool": "list_presets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "extract_palette",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pick_brand_color",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "render_aso_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "render_multi_size",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "render_ab_variants",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "render_play_store_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "render_localized_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "detect_empty_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "suggest_headlines",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "clone_reference",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_read",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_write",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "record_telemetry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_telemetry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_assets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_asset",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"fetch\""
        ]
      }
    },
    {
      "tool": "make_showcase",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "parameter \"path\""
        ]
      }
    },
    {
      "tool": "render_video_concept",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "render_video",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "auto_video",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"request\""
        ]
      }
    },
    {
      "tool": "list_video_templates",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "render_video_template",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "59e837b1bb025100f142b5f1b3c19297e17633d7968977b60600a16e29e7624a",
  "stats": {
    "tools": 25,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 1,
      "medium": 0,
      "low": 2,
      "info": 0
    }
  }
}