Skip to main content
Glama
aqeelshamz

wixzel-phone-mcp

by aqeelshamz

List calls

list_calls
Read-onlyIdempotent

Retrieve call summaries with filters for status, direction, agent, campaign, engine, phone number, or time window to review call activity without full transcripts.

Instructions

List calls in summary form (no transcript). Filter by status, direction, agent, campaign, engine, phone number or time window. Use get_call for the full record of one call.

Requires scope calls:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 20.
engineNoEngine id as returned by list_engines.
statusNo
agent_idNo
directionNo
campaign_idNo
failed_onlyNoOnly calls that did not connect.
phone_numberNoMatch either party's number.
ending_beforeNoCursor from a previous response. Fetches the page before it. Not with starting_after.
started_afterNoISO 8601 timestamp, UTC, e.g. "2026-09-01T12:00:00.000Z".
started_beforeNoISO 8601 timestamp, UTC, e.g. "2026-09-01T12:00:00.000Z".
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.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so no safety ambiguity. The description adds useful behavioral context beyond annotations: it returns summary data only, not transcripts, and requires the calls:read scope. This helps the agent understand what the call will and will not return.

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?

Three concise, information-dense sentences: scope qualifier, filter capabilities, single-call alternative, and auth requirement. Every sentence earns its place and the key differentiator 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 12-parameter list tool with no output schema, the description covers purpose, filter categories, the correct alternative, and required scope. Pagination and individual param detail are handled by the schema. The only minor gap is that 'summary form' is somewhat vague about exact output fields, but it is sufficient for correctness.

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?

The schema documents 67% of parameters; the description adds a functional overview by grouping them into filter dimensions: status, direction, agent, campaign, engine, phone number, and time window. It does not add individual parameter detail beyond the schema, so it partially compensates but mostly relies on schema coverage.

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?

Description states a specific verb and resource: 'List calls', and adds a precise scope qualifier: 'in summary form (no transcript)'. It also names the alternative get_call for the full record, so an agent can distinguish list_calls from get_call and get_call_transScript without opening schemas.

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?

Provides a clear when-to-use context: list calls in summary form; if the full record of a single call is needed, use get_call. It does not explicitly mention get_call_transcript for transcripts, but the phrase '(no transcript)' plus 'full record' gives sufficient routing information.

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