Overview
MCP-Voice is a server designed for Voice AI applications utilizing OpenAI's technology, enabling developers to create and manage voice-based interactions.
To use mcp-voice, developers can clone the repository from GitHub, set up the server environment, and integrate it with their voice AI applications.
- Integration with OpenAI for advanced voice processing - Customizable server settings for various voice applications - Support for multiple voice recognition and synthesis options
- Building voice assistants for smart home devices
- Developing interactive voice response systems for customer service
- Creating voice-controlled applications for accessibility
Add to your AI client
Use these steps to connect mcp-voice in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-voice-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-voice-mario-andreschak"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-voice-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-voice-mario-andreschak"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-voice-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-voice-mario-andreschak"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-voice-mario-andreschak": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-voice-mario-andreschak"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-voice-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-voice-mario-andreschak"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-voice-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-voice-mario-andreschak"
]
}
}
}FAQ
What programming languages does mcp-voice support?
mcp-voice is designed to be language-agnostic, but examples are provided in popular languages like Python.
Is mcp-voice free to use?
Yes! mcp-voice is open-source and available under the MIT license.
How can I contribute to mcp-voice?
Contributions are welcome! You can submit issues or pull requests on the GitHub repository.