> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neus.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Profile Context (`neus_me`)

> Refresh signed-in profile context or look up a public wallet/DID.

Most sessions do **not** need a separate **`neus_me`** call. Call **`neus_context`** first; when the connection is authenticated, it already includes signed-in profile context.

Use **`neus_me`** when you need to refresh profile context, confirm a changed sign-in, or look up a public Profile by wallet/DID ([Auth](./auth), [Overview](./overview)).

| Topic                    | Detail                                                                         |
| ------------------------ | ------------------------------------------------------------------------------ |
| **Signed-in session**    | Refreshes the current Profile context                                          |
| URL-only MCP             | Returns **`auth_required`** — run **`neus auth`** or sign in through your host |
| No key, user must verify | **`neus_verify_or_guide`**                                                     |
| Public identifier lookup | Pass `identifier` (wallet or DID); visibility rules apply                      |

## Input

```json theme={"dark"}
{
  "identifier": "0x..."
}
```

Omit `identifier` to use the authenticated MCP session.

## Output

| `status`            | Payload                                                                                      |
| ------------------- | -------------------------------------------------------------------------------------------- |
| **`ok`**            | `principal` (DID, handle, primary account), optional `agents`, and optional `profileSummary` |
| **`auth_required`** | Optional **`ui_url`**                                                                        |

When present, `profileSummary.proofsSummary` is a compact profile snapshot with `total`, `embeddedCount`, `isTruncated`, `byVerifier`, `latestByVerifier`, `latestByCategory`, and `latestByScope`. Use **`neus_proofs_get`** for full paginated receipt history.
