quickvoice_mcp

rexanity/quickvoice_mcp

3.3

If you are the rightful owner of quickvoice_mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

QuickVoice MCP is a server designed to facilitate communication with QuickVoice AI Voice agents, enabling natural language interactions through phone calls.

QuickVoice MCP is a robust server solution that integrates with QuickVoice AI Voice agents to enable seamless communication through phone calls. It allows users to initiate calls using natural language prompts, making it an ideal tool for businesses and individuals looking to automate and enhance their telecommunication processes. The server can be easily set up using Docker or Python, and it integrates smoothly with platforms like Claude Desktop. Users can manage their agents, view call history, and track performance metrics through the QuickVoice.app web interface. The server supports various configuration options, including environment variables and MCP config files, ensuring flexibility and ease of use. With features like automatic retry logic for API calls and detailed analytics, QuickVoice MCP provides a comprehensive solution for managing AI-driven voice interactions.

Features

  • Initiate Call Tool: Allows users to make outbound calls using QuickVoice AI agents with specific context and instructions.
  • Automatic Retry Logic: Ensures successful API calls by implementing retry mechanisms.
  • Agent Management: Configure agent's voice, behavior, and response patterns through the web interface.
  • Conversation History: Review past calls and analyze conversation transcripts for insights.
  • Analytics: Track call performance metrics and user engagement to optimize interactions.

Usages

usage with Claude Desktop

{
  "mcpServers": {
    "QuickVoice": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "QUICKVOICE_AGENT_ID",
        "-e",
        "QUICKVOICE_API_KEY",
        "rexanity/quickvoice-mcp"
      ],
      "env": {
        "QUICKVOICE_AGENT_ID": "your-agent-id",
        "QUICKVOICE_API_KEY": "your-api-key"
      }
    }
  }
}

usage with Docker

bash
docker pull rexanity/quickvoice-mcp

docker run -e QUICKVOICE_AGENT_ID="your-agent-id" -e QUICKVOICE_API_KEY="your-api-key" rexanity/quickvoice-mcp

usage with Pip

bash
pip install -e .
python -m src.server