get_submission
Retrieve detailed malware analysis results for a specific submission using its unique identifier, enabling threat investigation and security assessment.
Instructions
Get submission details by UUID.
Args: uuid: Submission UUID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes |
Implementation Reference
- src/threatzone_mcp/server.py:437-445 (handler)The handler function for the 'get_submission' MCP tool. It is registered via the @app.tool decorator in FastMCP and retrieves submission details from the ThreatZone API endpoint using the provided UUID.async def get_submission(uuid: str) -> Dict[str, Any]: """ Get submission details by UUID. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}")