User Toolswordpress_list_users

wordpress_list_users

List WordPress users with optional search and pagination.

wordpress_list_users

List all users with optional filtering by search term.

Parameters

3 parameters, none required.

NameTypeRequiredWhat it is
searchstringnoSearch term
pagenumbernoPage number
per_pagenumbernoItems per page

Example call

No parameter is required, so the smallest valid call is empty:

{
  "name": "wordpress_list_users",
  "arguments": {}
}

Response

{
  "success": true,
  "users": [
    {
      "id": 1,
      "username": "admin",
      "email": "admin@example.com",
      "role": "administrator"
    }
  ]
}

What it changes

Nothing. It only reads, so there is nothing to approve and nothing to undo.

How long it takes

A typical call takes about 1.3 seconds. 19 in 20 finish within 2.6 seconds. Measured on real sites over the last week, so it includes the site's own hosting.

Availability

Works on any WordPress site, whichever page builder it uses. Available since Respira 1.0.0.

Example Prompts

  • "List all users"
  • "Search users for 'john'"