get_submission_iocs
Retrieve Indicators of Compromise (IOCs) for a specific malware analysis submission using its UUID to identify malicious activity and support threat intelligence.
Instructions
Get all Indicators of Compromise 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:458-466 (handler)The handler function decorated with @app.tool that implements the get_submission_iocs tool. It fetches IOCs for a given submission UUID via an API call to the ThreatZone client.@app.tool async def get_submission_iocs(uuid: str) -> Dict[str, Any]: """ Get all Indicators of Compromise for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/iocs")