MCP server
by paulotaylor
Enhance your contact center with VOYP Call Automation for computerised phone calls, auto calls, and advanced automated c
Connects to VOYP API to make automated phone calls through AI assistants like Claude, handling appointments, reservations, and business inquiries.
VOYP Call Automation is a community-built MCP server published by paulotaylor that provides AI assistants with tools and capabilities via the Model Context Protocol. Enhance your contact center with VOYP Call Automation for computerised phone calls, auto calls, and advanced automated c It is categorized under communication.
You can install VOYP Call Automation in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
VOYP Call Automation is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
According to our notes, VOYP Call Automation benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
VOYP Call Automation is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
VOYP Call Automation has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, VOYP Call Automation benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: VOYP Call Automation is the kind of server we cite when onboarding engineers to host + tool permissions.
We wired VOYP Call Automation into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
VOYP Call Automation is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
VOYP Call Automation has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
VOYP Call Automation is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
VOYP Call Automation is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
showing 1-10 of 70
The Model Context Protocol (MCP) is an open standard that enables AI systems to interact seamlessly with various data sources and tools, facilitating secure, two-way connections.
Developed by Anthropic, the Model Context Protocol (MCP) enables AI assistants like Claude to seamlessly integrate with VOYP's calling capabilities. This integration provides AI models with possibility of making phone calls and monitor their progress.
The Voyp MCP server allows you to:
<a href="https://glama.ai/mcp/servers/nlah6xt0ml"><img width="380" height="200" src="https://glama.ai/mcp/servers/nlah6xt0ml/badge" alt="Voyp Server MCP server" /></a>
Before you use Voyp, you need:
node --versionbrew install gitsudo apt install gitsudo yum install gitYou can connect directly to the stream-enabled endpoint here:
ht<span>tps://</span>api.voyp.app/mcp/stream
Voyp supports the OAuth2 authentication flow
You must add the Authorization header to your requests with your Voyp API Key or OAuth2 access tooken:
Authorization: Bearer sk_xyz
To install the voyp-mcp server you will need to add the extension manually.

Voyp + Goose Demo:
To install the voyp-mcp server, you can use the following methods:
To install Voyp Model Context Protocol server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @paulotaylor/voyp-mcp --client claude
npx -y voyp-mcp@0.1.0
Although you can launch a server on its own, it's not particularly helpful in isolation. Instead, you should integrate it into an MCP client. Below is an example of how to configure the Claude Desktop app to work with the voyp-mcp server.
# Create the config file if it doesn't exist
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Opens the config file in TextEdit
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Alternative method using Visual Studio Code (requires VS Code to be installed)
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 VOYP API key.
{
"mcpServers": {
"voyp-mcp": {
"command": "npx",
"args": ["-y", "voyp-mcp"],
"env": {
"VOYP_API_KEY": "your-VOYP-api-key"
}
}
}
}
git clone https://github.com/paulotaylor/voyp-mcp.git
cd voyp-mcp
npm install
npm run build
Follow the configuration steps outlined in the Configuring the Claude Desktop app section above, using the below JSON configuration.
Replace your-VOYP-api-key-here with your actual VOYP API key and /path/to/voyp-mcp with the actual path where you cloned the repository on your system.
{
"mcpServers": {
"voyp": {
"command": "npx",
"args": ["/path/to/voyp-mcp/build/index.js"],
"env": {
"VOYP_API_KEY": "your-VOYP-api-key"
}
}
}
}
Once the installation is complete, and the Claude desktop app is configured, you must completely close and re-open the Claude desktop app to see the voyp-mcp server. You should see a hammer icon in the bottom left of the app, indicating available MCP tools, you can click on the hammer icon to see more details on the start_call and hangup_call tools.
Now claude will have complete access to the voyp-mcp server, including the start_call and hangup_call tools.
Voyp + Claude Desktop Demo:
Server Not Found
npm --verisoncode ~/Library/Application\ Support/Claude/claude_desktop_config.jsonnode --versionNPX related issues
npx, you may need to use the full path to the npx executable instead.which npx in your terminal, then replace the "command": "npx" line with "command": "/full/path/to/npx" in your configuration.Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.