# Get Current User

`lawmatics_get-current-user` · Lawmatics MCP tool · Users

Fetch the user authenticated by the current Lawmatics connection (the `/v1/users/me` endpoint), including their name, email, timestamps, and a `relationships` envelope of {id,type} pointers to related records (current firm, inviting user, and all firms the user belongs to). Takes no arguments.

## Input

_No fields._

## Output

- **id** `string` (required) — Lawmatics user ID of the authenticated user
- **name** `string` (required) — User's full name (combined first and last name)
- **email** `string` (required) — User's email address
- **createdAt** `string` (required) — When the user was created, as an ISO 8601 timestamp
- **updatedAt** `string` (required) — When the user was last updated, as an ISO 8601 timestamp
- **relationships** `object` (required) — JSON:API relationship pointers to related records as {id,type} stubs. Not materialized — follow a pointer by calling that resource's own get tool (e.g. type 'user' -> get-user).
  - **currentFirm** `object | null` (required) — Pointer to the firm this user is currently operating in (type 'firm'); null when unset
    - **id** `string` (required) — ID of the referenced Lawmatics record
    - **type** `string` (required) — JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
  - **invitedBy** `object | null` (required) — Pointer to the user who invited this user (type 'user'); null for the founding user or when unset
    - **id** `string` (required) — ID of the referenced Lawmatics record
    - **type** `string` (required) — JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
  - **firms** `array` (required) — Pointers to every firm this user belongs to (type 'firm'); empty if none
    - **[]** `object`
      - **id** `string` (required) — ID of the referenced Lawmatics record
      - **type** `string` (required) — JSON:API record class of the reference; resolve it by calling that resource's own tool
