get_statuses
Check the status of malware analysis submissions to monitor progress and retrieve results from Threat.Zone's security platform.
Instructions
Get submission statuses.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/threatzone_mcp/server.py:125-128 (handler)The handler function for the 'get_statuses' tool. It fetches submission statuses from the ThreatZone API endpoint '/public-api/constants/statuses' using the shared API client.@app.tool async def get_statuses() -> Dict[str, Any]: """Get submission statuses.""" return await get_client().get("/public-api/constants/statuses")
- src/threatzone_mcp/server.py:125-125 (registration)Registration of the 'get_statuses' tool using the FastMCP @app.tool decorator.@app.tool