get_statuses
Retrieve analysis status updates for submitted malware samples or URLs to monitor threat investigation progress within 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 main handler function for the 'get_statuses' tool. It is decorated with @app.tool, which registers it as an MCP tool. The function retrieves submission statuses from the ThreatZone API using the get_client() helper.@app.tool async def get_statuses() -> Dict[str, Any]: """Get submission statuses.""" return await get_client().get("/public-api/constants/statuses")