get_my_submissions
Retrieve your submitted malware analysis reports with pagination controls to browse through analysis history efficiently.
Instructions
Get user's 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 |
|---|---|---|---|
| jump | No | ||
| page | No |
Implementation Reference
- src/threatzone_mcp/server.py:570-580 (handler)The main handler function for the 'get_my_submissions' tool, decorated with @app.tool for registration in FastMCP. It retrieves the user's paginated submissions by calling the ThreatZone API endpoint.@app.tool async def get_my_submissions(page: int = 1, jump: int = 10) -> Dict[str, Any]: """ Get user's 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/my-submissions/{page}/{jump}")