get_submission_dns
Retrieve DNS queries from a malware analysis submission to identify network activity and potential threats using the Threat.Zone MCP Server.
Instructions
Get all DNS queries 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:514-523 (handler)The main handler function for the 'get_submission_dns' tool. It is decorated with @app.tool, which registers it as an MCP tool. The function fetches DNS query data for a specified submission UUID from the ThreatZone API using get_client().@app.tool async def get_submission_dns(uuid: str) -> Dict[str, Any]: """ Get all DNS queries for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/dns")