get_submission_config_extractor
Retrieve extracted configuration data for a malware analysis submission using its UUID to access detailed threat intelligence and analysis results.
Instructions
Get all extracted configurations 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:502-510 (handler)Handler function for the get_submission_config_extractor tool. Registered via @app.tool decorator. Takes a submission UUID and fetches config extractor results from the ThreatZone API endpoint using the shared API client.@app.tool async def get_submission_config_extractor(uuid: str) -> Dict[str, Any]: """ Get all extracted configurations for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/config-extractor-results")