mediawiki_list_users
Retrieve a list of wiki users with optional group, activity, and limit filters. Returns user details including groups, edit counts, and registration dates.
Instructions
List wiki users with optional group filtering.
USE WHEN: User asks "who are the admins", "list all users", "show active editors".
PARAMETERS:
group: Filter by group - "sysop" (admins), "bureaucrat", "bot" (optional)
active_only: Only show recently active users (default false)
limit: Max users (default 50)
continue_from: Pagination token
RETURNS: User names, groups, edit counts, and registration dates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group | No | Filter by user group: 'sysop' (admins), 'bureaucrat', 'bot', or empty for all users | |
| limit | No | Maximum users to return (default 50, max 500) | |
| rationale | No | Optional one-sentence explanation of why you are calling this tool. Used for audit trails when present. | |
| active_only | No | Only return users active in the last 30 days | |
| continue_from | No | Continue token for pagination |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group | No | ||
| users | Yes | ||
| has_more | Yes | ||
| total_count | Yes | ||
| continue_from | No |