get_profile
Retrieve user profile details by providing a UID or username. If omitted, the tool defaults to the MONKEYTYPE_USERNAME environment variable, simplifying data access for authorized users.
Instructions
Get user's profile information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uidOrName | No | The UID or username of the user. If omitted or set to a keyword like 'me', 'self', 'current', or 'my', the value from the MONKEYTYPE_USERNAME environment variable will be used. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"uidOrName": {
"description": "The UID or username of the user. If omitted or set to a keyword like 'me', 'self', 'current', or 'my', the value from the MONKEYTYPE_USERNAME environment variable will be used.",
"type": "string"
}
},
"type": "object"
}