get_submission_artifacts
Retrieve all analysis artifacts for a specific malware submission using its unique identifier, enabling comprehensive review of threat intelligence data.
Instructions
Get all artifacts 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:491-500 (handler)Handler function decorated with @app.tool (registration) that implements the get_submission_artifacts tool by calling the ThreatZone API to retrieve analysis artifacts for the given submission UUID.@app.tool async def get_submission_artifacts(uuid: str) -> Dict[str, Any]: """ Get all artifacts for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/analysis-artifacts")
- src/threatzone_mcp/server.py:491-491 (registration)The @app.tool decorator registers the get_submission_artifacts function as an MCP tool.@app.tool