download_html_report
Retrieve HTML analysis reports for malware submissions using the submission UUID to access detailed threat intelligence and sandbox execution results.
Instructions
Download HTML analysis report for a submission.
Args: uuid: Submission UUID
Returns: HTML report content
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes |
Implementation Reference
- src/threatzone_mcp/server.py:624-636 (handler)The tool handler function decorated with @app.tool, which downloads the HTML analysis report for the given submission UUID from the ThreatZone API and returns it as a UTF-8 decoded string.@app.tool async def download_html_report(uuid: str) -> str: """ Download HTML analysis report for a submission. Args: uuid: Submission UUID Returns: HTML report content """ content = await get_client().download(f"/public-api/download/html-report/{uuid}") return content.decode('utf-8')