> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# list-members

> List all organisation members with their roles.

Returns all members of the organisation, optionally filtered by role or name/email search.

**Requires:** `read` permission

## Parameters

| Parameter | Type   | Description                                          |
| --------- | ------ | ---------------------------------------------------- |
| `search`  | string | Filter by name or email (partial match)              |
| `role`    | string | Filter by role: `owner`, `admin`, `member`, `viewer` |

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list-members",
    "arguments": {}
  }
}
```

## Response

```json theme={null}
{
  "total": 4,
  "members": [
    {
      "id": "...",
      "name": "Jane Smith",
      "email": "jane@example.com",
      "role": "owner",
      "joined_at": "2025-01-15T00:00:00Z"
    },
    {
      "id": "...",
      "name": "Bob Dev",
      "email": "bob@example.com",
      "role": "member",
      "joined_at": "2025-03-01T00:00:00Z"
    }
  ]
}
```

## Example prompts

* *"Who are the members of this organisation?"*
* *"List all admins"*
* *"Find bob's user ID"*
