Skip to main content
Returns all members of the organisation, optionally filtered by role or name/email search. Requires: read permission

Parameters

ParameterTypeDescription
searchstringFilter by name or email (partial match)
rolestringFilter by role: owner, admin, member, viewer

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list-members",
    "arguments": {}
  }
}

Response

{
  "total": 4,
  "members": [
    {
      "id": "...",
      "name": "Jane Smith",
      "email": "[email protected]",
      "role": "owner",
      "joined_at": "2025-01-15T00:00:00Z"
    },
    {
      "id": "...",
      "name": "Bob Dev",
      "email": "[email protected]",
      "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”