get_sample_metafield
Retrieve sample metafield configuration to support sandbox analysis for malware detection and threat investigation.
Instructions
Get sample metafield configuration for sandbox analysis.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/threatzone_mcp/server.py:131-135 (handler)The main handler function for the 'get_sample_metafield' tool. It is registered via the @app.tool decorator and retrieves the sample metafield configuration from the ThreatZone API endpoint '/public-api/constants/samplemetafield' using the shared API client.@app.tool async def get_sample_metafield() -> Dict[str, Any]: """Get sample metafield configuration for sandbox analysis.""" return await get_client().get("/public-api/constants/samplemetafield")