get_submission
Retrieve detailed malware analysis results for a specific submission using its unique identifier to access threat intelligence and sandbox execution data.
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:436-445 (handler)The main handler function for the 'get_submission' tool. It is registered via the @app.tool decorator and retrieves submission details from the ThreatZone API using the provided UUID.@app.tool 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}")
- src/threatzone_mcp/server.py:436-436 (registration)The @app.tool decorator registers the get_submission function as an MCP tool.@app.tool