get-user-info
Returns information about the authenticated user and the current organization. Useful for verifying the connection and identifying the context.
Parameters
None.
Response
| Field | Type | Description |
|---|---|---|
user.name | string | Display name of the authenticated user |
user.email | string | Email address |
organization.name | string | Name of the current organization |
Example
Request:
{
"tool": "get-user-info",
"arguments": {}
}
Response:
{
"user": {
"name": "Jane Doe",
"email": "jane@example.com"
},
"organization": {
"name": "My Company"
}
}