Skip to main content
Glama
aqeelshamz

wixzel-phone-mcp

by aqeelshamz

Create an agent

create_agent

Create a phone voice agent by selecting STT, LLM, and TTS engines or a single realtime model, then set its system prompt, opening message, and language for live calls.

Instructions

Create a voice agent. Pick models with list_engines first: an unavailable or mistyped model is rejected with unsupported_model. voice is either a composed pipeline {stt, llm, tts} or a single {realtime} model, never both.

Requires scope agents:write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesA label for your own reference, e.g. "Support line".
voiceYesEither a COMPOSED pipeline {stt, llm, tts} (all three required together) or a single REALTIME model {realtime}. Never both. Use list_engines to pick models that are available right now.
languageNoBCP-47 tag for the conversation, e.g. "en-US" or "hi-IN".
system_promptYesThe agent's instructions. This is a spoken conversation, so keep it short, concrete, and free of markdown.
opening_messageYesSpoken as soon as the call connects. Supports {{name}} style merge fields from the lead. Required: an agent without one answers in silence.
knowledge_base_idNoA knowledge base the agent can draw on. See list_knowledge_bases.
outbound_phone_number_idNoDefault caller id for outbound calls placed with this agent. See list_phone_numbers.
appointment_booking_enabledNoLet the agent book appointments during a call.

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?

All annotations are false, so the description carries the burden of behavioral disclosure. It adds valuable context by disclosing the exact error for invalid models (unsupported_model), the required scope (agents:write), and the exclusive voice-pipeline constraint. It does not mention idempotency or whether duplicate calls create duplicate agents, but the disclosed error and scope behavior go beyond what the schema and annotations provide.

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. Every sentence serves a purpose: what the tool does, the prerequisite workflow, the key voice constraint, and the required authorization scope. There is no filler or repetition of the input schema.

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 complex tool with 8 parameters, a nested voice object, and no output schema, the description covers the most error-prone parts: model validation, voice pipeline exclusivity, and authorization. It does not describe the creation result shape or whether the agent is immediately usable, but the structured schema carries most parameter detail and the critical runtime constraints are present.

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 description coverage is 100%, so the individual parameters are already documented well. The description adds important semantic value for the nested voice parameter by explaining the composed pipeline vs. realtime-model exclusivity and reinforcing that model choices must come from list_engines. This helps an agent avoid invalid voice payloads even before opening the nested schema.

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 opens with a specific verb and resource: 'Create a voice agent.' It clearly names the artifact being created and distinguishes this creation operation from sibling tools like update_agent, list_agents, and delete_agent. The voice pipeline detail further clarifies the specific type of agent being created.

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 a concrete prerequisite: call list_engines first to choose available models, and warns that unavailable or mistyped models will be rejected with unsupported_model. It also explains the voice structure choice clearly. It does not explicitly contrast with update_agent or state when not to use this tool, but for a create operation the usage context is mostly self-evident.

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