discourse_get_user
Retrieve basic user information from Discourse forums by providing a username to access profile details and forum activity data.
Instructions
Get basic user info.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"username": {
"minLength": 1,
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}