Skip to main content
Glama
aqeelshamz

wixzel-phone-mcp

by aqeelshamz

List leads

list_leads
Read-onlyIdempotent

Retrieve contacts by tag or free-text search with cursor pagination. Filter leads by name or phone number to locate target records efficiently.

Instructions

List leads (contacts). Filter by tag or free-text search. Cursor-paginated.

Requires scope leads:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo
limitNoPage size, 1–100. Default 20.
searchNoMatches name or phone number.
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/5.0
Behavior4/5

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

There are no annotations, so the description carries the burden of disclosing behavior. It adds value beyond the schema by stating the required `leads:read` scope and calling out cursor pagination. Tis is a read-path tool, and the scope strongly reinforces that, though it does not describe response shape or rate limits.

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?

Two sentences with no filler: one states the operation and filtering modes, the other states pagination and auth requirement. Every clause earns its place and the most decision-relevant information is front-loaded.

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 moderately simple filtered-list tool, the description covers the core operational facts: resource, filterable fields, pagination, and auth scope. With no output schema, an explicit note about the returned lead shape would be a small bonus, but the tool name and list semantics make it reasonably inferable.

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

Parameters3/5

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

Schema coverage is 80%, so the schema already documents most parameter meanings. The description adds only a high-level mapping of tag/search to filtering and cursor-paginated to pagination, without drilling into syntax, constraints, or cursor interplay that the schema already covers.

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 clear verb and resource ('List leads') and characterizes leads as contacts, then adds distinguishing capabilities: filtering by tag or free-text search and cursor pagination. This adequately separates it from singular get_lead and mutation tools like create_lead/update_lead.

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

Usage Guidelines3/5

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

The description gives clear context for when to call this tool – when you need a paginated, filterable list of leads – but it does not explicitly mention when not to use it or point to alternatives such as get_lead for a single record. Usage is implied rather than explicitly routed.

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