twitter_community_moderators
List moderators and admins of an X Community with cursor pagination. Returns user-role rows, distinct from the member roster.
Instructions
List the moderators and admins of an X Community, cursor-paginated, in the same { user, role } row shape twitter_community_members returns (the array is also called members, deliberately, so the two cannot drift apart). This is a SEPARATE upstream operation, not a filter over the member roster, and that matters for correctness: moderators sit at arbitrary positions inside the full roster, so filtering one page of twitter_community_members would return 'the moderators among the first 20 members' while looking like a complete answer. Read each row's role rather than assuming every row is a Moderator, since admins appear here too. Paging is a bare next_cursor with no total count from X.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Max rows to return for this page. Defaults to 20 and is clamped to 1-100. | |
| cursor | No | Opaque pagination cursor from a previous response's next_cursor field. Omit on the first call. | |
| community_id | Yes | Numeric X community id, the digits in a x.com/i/communities/<id> URL, e.g. '1493446837214187523'. |