enreachvoice_mcp

enreachvoice_mcp

0

The EnreachVoice API MCP Server is designed to connect the EnreachVoice API with AI systems. It uses environment variables for configuration.

EnreachVoice API MCP Server

MCP Server proto to connect EnreachVoice API to AI.

Configuraition

EnereachVoice API credentials are provided as env-variables:

ENREACHVOICE_APIUSER=username
ENREACHVOICE_APISECRET=secretkey

Adding to Claude desktop

Add following to claude_desktop_config.json

{
  "mcpServers": {
    "EnreachVoice": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "mcp[cli]",
        "--env-file",
        "D:\\path\\to\\enreachvoice_mcp\\.env",
        "D:\\path\\to\\enreachvoice_mcp\\main.py"
      ]
    }
  }
}