wp_users_search
Search WordPress users by page and per_page to retrieve paginated user lists for site administration.
Instructions
Search WordPress users
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| per_page | No |
Search WordPress users by page and per_page to retrieve paginated user lists for site administration.
Search WordPress users
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| per_page | No |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does not state whether this is read-only, paginated, what permissions are required, or what the response contains, leaving significant gaps for a search operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that is efficient and wastes no words. It is concise, though its brevity comes at the cost of substantive detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with two undocumented parameters, no annotations, and no output schema, the description is too sparse. It fails to explain search behavior, pagination, or return format, leaving an agent without enough information to invoke it confidently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate but does not. The two parameters (page, per_page) are undocumented in both schema and description; however, the defaults imply pagination, giving some inference value, hence a baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a clear verb (Search) and resource (WordPress users), which is adequate to identify the operation. However, it does not distinguish this from sibling search tools like wp_posts_search or wc_products_search beyond the resource name, and offers no detail about what 'search' entails or returns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives such as wp_get_user or any other retrieval tool. The description merely names the action without context about scenarios, filters, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.