get_user
Retrieve the authenticated user details from the Intruder API using the MCP server intruder-mcp for client integrations like Claude and Cursor.
Instructions
Get the current user of the Intruder API that we are authenticated as
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"title": "get_userArguments",
"type": "object"
}
Implementation Reference
- intruder_mcp/server.py:17-21 (handler)The main handler function for the 'get_user' tool. It is decorated with @mcp.tool(), which registers it in the MCP server. The function calls api.get_health() to retrieve and return the authenticated user string.@mcp.tool() async def get_user() -> str: """Get the current user of the Intruder API that we are authenticated as""" health = api.get_health() return health.authenticated_as