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.
| Name | Type | Required | What it is |
|---|---|---|---|
search | string | no | Search term |
page | number | no | Page number |
per_page | number | no | Items 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'"
Related Tools
Was this page helpful?