get_me
Retrieve your authenticated user profile information from the Umami Analytics platform to access account details and manage permissions.
Instructions
Get the currently authenticated user's profile information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/account.ts:6-14 (handler)The implementation of the "get_me" tool handler, registered via `server.tool` in `src/tools/account.ts`.
server.tool( "get_me", "Get the currently authenticated user's profile information", {}, async () => { const data = await client.call("GET", "/api/me"); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; } );