get_user_info
Retrieve current user account details, workspace information, and usage limits from the Threat.Zone MCP Server to manage access and monitor analysis capacity.
Instructions
Get current user information, workspace details, and usage limits.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/threatzone_mcp/server.py:203-206 (handler)Handler function for the 'get_user_info' tool. Decorated with @app.tool for registration in FastMCP. Fetches user information from the ThreatZone API endpoint '/public-api/me' using the shared API client.async def get_user_info() -> Dict[str, Any]: """Get current user information, workspace details, and usage limits.""" return await get_client().get("/public-api/me")