
Voyp Model Context Protocol server

2025.02.03
8
JavaScript电话服务AI集成交流协作
Voyp Model Context Protocol (MCP) server 是一个基于开放标准的服务,旨在使AI系统能够与各种数据源和工具无缝交互,实现安全、双向的连接。该服务由Anthropic开发,特别为Claude等AI助手设计,集成了VOYP的呼叫功能,使AI模型能够拨打电话并监控通话进度。
核心功能包括:
- 构建用于呼叫的健壮上下文
- 搜索商业信息(如餐厅、牙医等)
- 拨打电话进行预约、预订、咨询等操作
- 提供通话状态
- 挂断电话
适用场景:
- 商业预约和预订
- 客户服务自动化
- 电话咨询和查询
View on GitHub
Overview
基本能力
产品定位
Voyp MCP server 是一个使AI系统能够通过电话进行交互的服务,特别适用于需要电话自动化的场景。
核心功能
- 构建呼叫上下文
- 商业信息搜索
- 电话呼叫功能(预约、预订、咨询等)
- 通话状态监控
- 挂断电话
适用场景
- 商业预约和预订
- 客户服务自动化
- 电话咨询和查询
工具列表
start_call
: 启动电话呼叫hangup_call
: 挂断电话
常见问题解答
- Server Not Found
- 检查npm和Node.js是否正确安装
- 验证Claude Desktop配置语法
- NPX related issues
- 使用npx的完整路径
- API Key Issues
- 确认VOYP API密钥有效且正确配置
使用教程
使用依赖
- Voyp API key(需购买通话信用)
- 兼容的客户端(Claude Desktop或Goose)
- Node.js(v20或更高版本)
- 验证安装:
node --version
- Git(仅在使用Git安装方法时需要)
- macOS:
brew install git
- Linux (Debian/Ubuntu):
sudo apt install git
- Linux (RedHat/CentOS):
sudo yum install git
- Windows: 下载Git for Windows
安装教程
对于Goose
手动添加扩展
对于Claude Desktop
- 通过Smithery安装
npx -y @smithery/cli install @paulotaylor/voyp-mcp --client claude
- 通过NPX运行
npx -y [email protected]
- Git安装
git clone https://github.com/paulotaylor/voyp-mcp.git
cd voyp-mcp
npm install
npm run build
配置Claude Desktop应用
macOS:
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
Windows:
code %APPDATA%\Claude\claude_desktop_config.json
添加配置(替换API密钥):
{
"mcpServers": {
"voyp-mcp": {
"command": "npx",
"args": ["-y", "voyp-mcp"],
"env": {
"VOYP_API_KEY": "your-VOYP-api-key"
}
}
}
}
调试方式
- 完全关闭并重新打开Claude桌面应用
- 检查底部左侧的锤子图标,确认工具可用
- 验证
start_call
和hangup_call
工具是否可见