MCP Server LogoMCP Server
MCPsカテゴリディレクトリ投稿する
投稿する
MCPsカテゴリディレクトリ投稿する
投稿する

MCPサーバー

MCPサーバーのリスト、Awesome MCPサーバーとClaude MCP統合を含む。AIの能力を強化するためのMCPサーバーを検索して発見します。

お問い合わせ

[email protected]

MCPサーバーについて

プライバシーポリシー利用規約

リソース

モデルコンテキストプロトコルMCPスターターガイドClaude MCPサーバー

コミュニティ

GitHub

© 2025 mcpserver.cc © 2025 MCPサーバー. 全著作権所有.

プライバシーポリシー利用規約
  1. Home
  2. /Categories
  3. /Communication & Collaboration
  4. /Quickvoice_mcp
Quickvoice_mcp

Quickvoice_mcp

作成者 rexanity•19 days ago
サイトを訪問する

MCP Server for QuickVoice.app

Communication & Collaboration
QuickVoiceMCPvoice-assistantAI

QuickVoice MCP

A MCP server to communicate with QuickVoice AI Voice agents.

🚀 Quickstart

  1. Get your QuickVoice API credentials (agent ID and API key)
  2. Set up Claude Desktop with QuickVoice MCP
  3. Start making AI phone calls with natural language prompts

QuickVoice.app Web Interface

Accessing the Dashboard

  1. Go to quickvoice.app and sign in with your credentials
  2. Navigate to the Dashboard to view your agent status, call history, and credit usage
  3. Access the Settings page to manage your API keys and agent configuration

Managing Your Agent

  • Create/Edit Agent: Configure your agent’s voice, behavior, and response patterns
  • Conversation History: Review past calls and analyze conversation transcripts
  • Analytics: Track call performance metrics and user engagement

Getting API Credentials

  1. Go to Settings > API
  2. Generate a new API key if you don’t have one
  3. Copy your Agent ID and API Key to use with the MCP integration

📱 Using with Claude Desktop

Claude Desktop Setup

  1. Open Claude Desktop
  2. Go to Settings > Developer > Edit Config
  3. Add the following to your claude_desktop_config.json:
{
  "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"
      }
    }
  }
}

Example Prompts

Try asking Claude:

  • “Call 555-123-4567 and schedule an appointment for tomorrow at 2pm”
  • “Call my customer to follow up on their order status”
  • “Make a call to check if a restaurant has availability for dinner tonight”
  • “Call this number and ask about their business hours”
Image

⚠️ Note: Using QuickVoice will consume API credits based on your account’s billing terms.

For detailed instructions on integrating QuickVoice with Claude Desktop, see CLAUDE_DESKTOP.md{:target=“_blank”}.

Installation Options

Docker (Recommended)

## Pull the Docker image
docker pull rexanity/quickvoice-mcp

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

Using Pip

pip install -e .
python -m src.server

Available Features

  • Initiate Call Tool: Make outbound calls using QuickVoice AI agents
    • Calls a phone number with specific context and instructions
    • Includes automatic retry logic for API calls

Configuration

You can configure your QuickVoice API credentials in one of the following ways:

1. Environment Variables

Set the following environment variables:

export QUICKVOICE_AGENT_ID="your-agent-id"
export QUICKVOICE_API_KEY="your-api-key"
export QUICKVOICE_API_ENDPOINT="http://your-api-endpoint" # Optional, defaults to http://localhost:8000
export LOG_LEVEL="INFO" # Optional, defaults to INFO

2. MCP Config File

Create an MCP config file by copying the example:

cp mcp_config.json.example ~/.config/mcp/config.json

Then update the values in the config file:

{
  "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 Examples

Initiating a Call

response = initiate_call(
    phone_number="1234567890",
    context="Customer information and relevant details",
    instruction="Ask about their dinner plans"
)

🔧 Development

Poetry Setup

## Install Poetry if you don't have it
curl -sSL https://install.python-poetry.org | python3 -

## Install dependencies
poetry install

## Activate the virtual environment
poetry shell

## Run the server in development mode
poetry run python -m src.server

Docker Development

## Build the development image locally
docker build -t quickvoice-mcp-dev --target development .

## Run with mounted source code for live reloading
docker run -v $(pwd):/app -e QUICKVOICE_AGENT_ID="your-agent-id" -e QUICKVOICE_API_KEY="your-api-key" -e QUICKVOICE_API_ENDPOINT="http://host.docker.internal:8000" quickvoice-mcp-dev

Note: While the :latest tag is implied when no tag is specified, using explicit tags (like :dev or :1.0.0) is recommended for production environments to ensure version stability.

🔍 Troubleshooting

Log Locations

  • macOS: ~/Library/Logs/Claude/mcp-server-quickvoice.log
  • Windows: %APPDATA%\Claude\logs\mcp-server-quickvoice.log

Common Issues

API Connection Errors

  • Verify your API credentials are correct
  • Check that your API endpoint is reachable from your environment
  • For Docker: ensure host.docker.internal is used for local development

Call Not Initiating

  • Confirm the phone number format is correct (include country code if necessary)
  • Ensure your QuickVoice account has sufficient credits
  • Check the API response for specific error messages

前提条件

  • •サーバーのドメインに精通している
  • •関連技術の基本的な理解
  • •Communication & Collaborationの知識

おすすめのサーバー

Mcp2serial

Mcp2serial

A open-source library enabling AI models to control hardware devices via serial communication using the MCP protocol. Initial support for Raspberry Pi Pico.

Logseq Mcp

Logseq Mcp

simple logseq mcp server

Server Wp Mcp

Server Wp Mcp

もっと見る → →

詳細

作成日

June 12, 2025

最終更新日

June 12, 2025

カテゴリー

Communication & Collaboration

作成者

rexanity

シェアする

もっと見る

Mcp Twitter Server

Mcp Twitter Server

Model Context Protocol Server for Accessing twitter

Mcpnotes

Mcpnotes

A simple note-taking MCP server for recording and managing notes with AI models.

Mcp Server Bluesky

Mcp Server Bluesky

MCP server for interacting with Bluesky

Mcp Server Taskwarrior

Mcp Server Taskwarrior

MCP Server for TaskWarrior!