whoami
Retrieve the authenticated user's profile including id, name, role, locale, and timezone to resolve 'me' references and identify the acting user.
Instructions
Fetch the authenticated user's profile.
Returns the User you're acting as — id, name, role flags, locale,
timezone. Use this to resolve "me" / "myself" references in user
requests (assign to me → assigned_user_id from this response)
or to show the LLM whose perspective it's operating from.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| name | No | ||
| initials | No | ||
| is_account_admin | No | ||
| is_account_owner | No | ||
| is_project_manager | No | ||
| is_suspended | No | ||
| last_activity_on | No | ||
| last_login_at | No | ||
| created_at | No | ||
| timezone | No | ||
| locale | No |