movoice-mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MOVOICE_API_KEY | Yes | Your Movoice API key (mv_live_...) | |
| MOVOICE_API_URL | No | Override API base URL (default: https://app.movoice.ai) | https://app.movoice.ai |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_agentsA | List all voice AI agents in your Movoice AI account. |
| create_agentA | Create a new voice AI agent on Movoice AI. The agent will be ready to take calls immediately. |
| get_agentA | Get details of a specific voice AI agent by its ID. |
| update_agentA | Update an existing voice AI agent. Only provide fields you want to change. |
| delete_agentA | Permanently delete a voice AI agent. |
| list_callsA | List recent call logs for your account. Includes duration, sentiment, and transcript availability. |
| get_callA | Get full details of a specific call including transcript and AI analysis. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct resource and action: five tools handle agent lifecycle (list/get/create/update/delete), and two handle call logs (list/get). There is no overlap or ambiguity between the tools.
All tool names follow a consistent verb_noun pattern using snake_case, such as list_agents, create_agent, delete_agent, and list_calls. This makes the API predictable and easy for an agent to navigate.
Seven tools is a well-scoped set for a voice AI agent management server. Each tool covers a meaningful operation without unnecessary redundancy or bloat.
The tool surface provides full CRUD coverage for agents and read-only access to call logs, which is exactly what the domain requires. There are no obvious missing operations that would cause agent workflows to fail.