The Voyp Model Context Protocol (MCP) server enables AI assistants like Claude to make and monitor phone calls through the Voyp platform. This integration allows AI models to place calls to businesses for appointments, reservations, or inquiries, while providing real-time call status updates.
Before using the Voyp MCP server, you need:
node --version
To add the Voyp MCP server to Goose:
There are three methods to install the Voyp MCP server:
npx -y @smithery/cli install @paulotaylor/voyp-mcp --client claude
npx -y [email protected]
git clone https://github.com/paulotaylor/voyp-mcp.git
cd voyp-mcp
npm install
npm run build
After installation, you need to configure Claude Desktop to use the Voyp MCP server:
# Create the config file if it doesn't exist
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Open in TextEdit
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Or open in VS Code
code "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
code %APPDATA%\Claude\claude_desktop_config.json
Replace your-VOYP-api-key
with your actual API key:
{
"mcpServers": {
"voyp-mcp": {
"command": "npx",
"args": ["-y", "voyp-mcp"],
"env": {
"VOYP_API_KEY": "your-VOYP-api-key"
}
}
}
}
If you used the Git installation method, use this configuration instead:
{
"mcpServers": {
"voyp": {
"command": "npx",
"args": ["/path/to/voyp-mcp/build/index.js"],
"env": {
"VOYP_API_KEY": "your-VOYP-api-key"
}
}
}
}
After installation and configuration:
start_call
and hangup_call
toolsClaude can now use these tools to:
Server Not Found
npm --version
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
node --version
NPX Related Issues
which npx
"command": "npx"
with "command": "/full/path/to/npx"
in your configurationAPI Key Issues
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "voyp" '{"command":"npx","args":["-y","voyp-mcp"],"env":{"VOYP_API_KEY":"your-VOYP-api-key"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"voyp": {
"command": "npx",
"args": [
"-y",
"voyp-mcp"
],
"env": {
"VOYP_API_KEY": "your-VOYP-api-key"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"voyp": {
"command": "npx",
"args": [
"-y",
"voyp-mcp"
],
"env": {
"VOYP_API_KEY": "your-VOYP-api-key"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect