Raw scan report

Toolbox — 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.

← Back to the scan page
{
  "tool": {
    "name": "mcptrustchecker",
    "version": "1.13.0",
    "methodologyVersion": "mcptrustchecker-1.13"
  },
  "target": {
    "id": "mcp-toolbox",
    "source": {
      "kind": "package",
      "origin": "mcp-toolbox"
    },
    "server": {
      "name": "mcp-toolbox"
    }
  },
  "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.13"
  },
  "capability": {
    "level": "critical",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can create, modify or delete files",
      "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",
      "sensitive-source",
      "file-write",
      "untrusted-input"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (36 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: xiaoyuzhoufm_download → read_file_content → execute_command. 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": "xiaoyuzhoufm_download → read_file_content → execute_command"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "xiaoyuzhoufm_download"
        ],
        "sources": [
          "read_file_content"
        ],
        "sinks": [
          "execute_command"
        ],
        "path": [
          "xiaoyuzhoufm_download",
          "read_file_content",
          "execute_command"
        ],
        "edges": [
          {
            "from": "xiaoyuzhoufm_download",
            "to": "read_file_content",
            "kind": "agent-mediated"
          },
          {
            "from": "read_file_content",
            "to": "execute_command",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"execute_command\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"execute_command\" appears to run shell commands or evaluate code (keyword \"execute command\" in tool name). 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": "execute_command"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-002",
      "title": "Tool \"write_file_content\" can modify the filesystem",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "Tool \"write_file_content\" can write, overwrite or delete files (keyword \"write_file\" in tool name). Verify it is scoped to a safe directory.",
      "remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
      "location": {
        "kind": "tool",
        "name": "write_file_content"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"execute_command\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"execute_command\" 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": "execute_command"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"write_file_content\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"write_file_content\" 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": "write_file_content"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    },
    {
      "ruleId": "MTC-SUP-012",
      "title": "Package has no license",
      "category": "hygiene",
      "severity": "info",
      "confidence": "strong",
      "description": "\"mcp-toolbox\" has no declared license. This is a legal/reuse concern, not a security finding.",
      "location": {
        "kind": "package",
        "name": "mcp-toolbox"
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "xiaoyuzhoufm_download"
      ],
      "sensitiveSource": [
        "read_file_content"
      ],
      "externalSink": [
        "execute_command"
      ],
      "selfContained": false,
      "path": [
        "xiaoyuzhoufm_download",
        "read_file_content",
        "execute_command"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: xiaoyuzhoufm_download → read_file_content → execute_command."
    }
  ],
  "capabilities": [
    {
      "tool": "get_audio_length",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_audio_text",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "execute_command",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"execute command\" in tool name"
        ]
      }
    },
    {
      "tool": "think",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_session_id",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "remember",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "recall",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "forget",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_file",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_file_nodes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_image",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_image_fills",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_comments",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_post_comment",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_delete_comment",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_team_projects",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_project_files",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_team_components",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_file_components",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_component",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_team_component_sets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_team_styles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_file_styles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "figma_get_style",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "read_file_content",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"read_file\""
        ]
      }
    },
    {
      "tool": "write_file_content",
      "tags": [
        "file-write"
      ],
      "reasons": {
        "file-write": [
          "keyword \"write_file\" in tool name"
        ]
      }
    },
    {
      "tool": "replace_in_file",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_directory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "flux_generate_image",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "convert_file_to_markdown",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "convert_url_to_markdown",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "save_html",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_html",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_with_tavily",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_with_duckduckgo",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "xiaoyuzhoufm_download",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"crawl\""
        ]
      }
    }
  ],
  "surfaceDigest": "d0f0d9e6132f26f515b91365e411a28d5c8fa5bf1e4fbf4e66c2acb7eb7c4967",
  "stats": {
    "tools": 36,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 1,
      "medium": 1,
      "low": 2,
      "info": 1
    }
  }
}