get_submission_varist_results
Retrieve Varist Hybrid Analyzer results for malware analysis submissions using the submission UUID to access detailed threat intelligence and sandbox execution data.
Instructions
Get Varist Hybrid Analyzer results for a specific submission.
Args: uuid: Submission UUID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes |
Implementation Reference
- src/threatzone_mcp/server.py:480-488 (handler)This is the main handler function for the 'get_submission_varist_results' tool. It is decorated with @app.tool, which registers it as an MCP tool in FastMCP. The function retrieves Varist Hybrid Analyzer results for a given submission UUID by calling the ThreatZone API via the get_client() helper.@app.tool async def get_submission_varist_results(uuid: str) -> Dict[str, Any]: """ Get Varist Hybrid Analyzer results for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/varist-hybrid-analyzer-results")