get_public_submissions
Retrieve publicly available malware analysis submissions with pagination controls to browse and access threat intelligence data from the Threat.Zone platform.
Instructions
Get public submissions with pagination.
Args: page: Page number (default: 1) jump: Number of items per page (default: 10)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| jump | No |
Implementation Reference
- src/threatzone_mcp/server.py:582-592 (handler)Handler function for the get_public_submissions tool. Decorated with @app.tool, which registers it in the FastMCP server. Fetches paginated public submissions from the ThreatZone API.@app.tool async def get_public_submissions(page: int = 1, jump: int = 10) -> Dict[str, Any]: """ Get public submissions with pagination. Args: page: Page number (default: 1) jump: Number of items per page (default: 10) """ return await get_client().get(f"/public-api/get/public-submissions/{page}/{jump}")