get_levels
Retrieve standardized threat level classifications to interpret malware analysis results from Threat.Zone's security platform.
Instructions
Get threat levels used in analysis results.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/threatzone_mcp/server.py:119-122 (handler)The get_levels tool handler, registered and implemented via @app.tool decorator. It fetches the threat levels dictionary from the ThreatZone API endpoint /public-api/constants/levels using the shared API client.@app.tool async def get_levels() -> Dict[str, Any]: """Get threat levels used in analysis results.""" return await get_client().get("/public-api/constants/levels")