get_submission_indicators
Retrieve all threat indicators associated with a specific malware analysis submission using its UUID to support security investigations.
Instructions
Get all indicators 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:447-456 (handler)The handler function decorated with @app.tool (which also handles registration in FastMCP). It fetches submission indicators from the ThreatZone API using the shared API client.@app.tool async def get_submission_indicators(uuid: str) -> Dict[str, Any]: """ Get all indicators for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/indicators")