> ## 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.

# surefeedback://members

> List all organisation members with their roles.

Returns all members of the organisation associated with the current project.

**Requires:** `read` permission

## URI

```
surefeedback://members
```

## Reading via JSON-RPC

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://members"
  }
}
```

## Response

```json theme={null}
{
  "project": { "id": "...", "name": "My Project" },
  "organisation": { "id": "...", "name": "Acme Corp" },
  "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"
    }
  ]
}
```

## Roles

| Role     | Description                        |
| -------- | ---------------------------------- |
| `owner`  | Organisation creator — full access |
| `admin`  | Can manage members and settings    |
| `member` | Standard access                    |
| `viewer` | Read-only access                   |

## Notes

* The owner is always listed first
* To search or filter members by role, use the [`list-members`](/mcp/tools/list-members) tool
* Member UUIDs can be used with the [`assign-comment`](/mcp/tools/assign-comment) tool
