get_submission_tcp
Retrieve TCP requests and packets for a specific malware analysis submission using its UUID to examine network traffic patterns and behaviors.
Instructions
Get all TCP requests and packets 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:536-544 (handler)Handler and registration for the 'get_submission_tcp' tool. Decorated with @app.tool, it takes a submission UUID and returns TCP requests and packets by calling the ThreatZone API via get_client().@app.tool async def get_submission_tcp(uuid: str) -> Dict[str, Any]: """ Get all TCP requests and packets for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/tcp")