List IC members / accounts (operator)
ic_admin_list_membersThe ACTUAL account roster — every Clerk-backed IC account with its live ring/tier, resolved from Clerk (not the carded ic_directory_search, which only shows members who've set a profile card, and not the curated kiosk list). This is what you want to answer 'who are the members' or find a specific account (e.g. one that hasn't set a card yet). Each member: { user_id, name, email, tier ('public'|'ft-member'|'ai-floor'|'ic-member'|'operator'), pending_request (the tier they've requested but not yet been granted, or null), created_at }. Args: { tier?: filter to one ring; q?: case-insensitive name/email/user_id substring filter; limit?: number (default 200, max 500); offset?: number (default 0) }. Filters apply to the fetched page; total is the full Clerk account count and has_more tells you to page with offset (default limit covers all IC accounts in one page today). Required scope: admin:tier_review.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Case-insensitive substring match on name / email / user_id. | |
| tier | No | Filter the page to accounts currently at this ring. | |
| limit | No | Page size (default 200). | |
| offset | No | Page offset (default 0). |