Zum Hauptinhalt springen

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

FieldTypeDescription
user.namestringDisplay name of the authenticated user
user.emailstringEmail address
organization.namestringName of the current organization

Example

Request:

{
"tool": "get-user-info",
"arguments": {}
}

Response:

{
"user": {
"name": "Jane Doe",
"email": "jane@example.com"
},
"organization": {
"name": "My Company"
}
}