Skip to main content
Glama
aqeelshamz

wixzel-phone-mcp

by aqeelshamz

List agents

list_agents
Read-onlyIdempotent

Retrieve voice agents from your account with cursor-based pagination. Use starting_after or ending_before to navigate pages, and limit controls page size.

Instructions

List the voice agents on this account. Cursor-paginated: pass next_cursor as starting_after for the next page.

Requires scope agents:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 20.
ending_beforeNoCursor from a previous response. Fetches the page before it. Not with starting_after.
starting_afterNoCursor from a previous response's next_cursor. Fetches the page after it.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnly, idempotent, and non-destructive behavior. The description adds useful behavioral detail beyond annotations by explaining that results are cursor-paginated and that `next_cursor` from a previous response is passed as `starting_after`.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: purpose first, pagination behavior second, required scope last. Every sentence earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only listing tool with all optional parameters and no required inputs, the description covers purpose, pagination, and authentication requirements. It omits a detailed return-shape description, but that is not critical when the output schema is absent and the tool's behavior is straightforward.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema descriptions cover all three parameters, so a baseline of 3 applies. The description adds meaningful guidance by explicitly connecting `next_cursor` to `starting_after`, which clarifies the pagination flow beyond the individual parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'List the voice agents on this account.' It clearly distinguishes from sibling agent tools like get_agent, create_agent, update_agent, and delete_agent by indicating collection-level enumeration.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear operational context: it explains cursor-based pagination and the required `agents:read` scope. It does not explicitly enumerate when to choose this tool over alternatives, but the context is sufficient for a list operation on the account's agents.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.