download_html_report
Retrieve HTML malware analysis reports from Threat.Zone by providing a submission UUID to access detailed security findings.
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 handler function for the 'download_html_report' tool. It is registered via @app.tool decorator and downloads the HTML report content for the given submission UUID using the API client, then decodes and returns it as a 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')