Back to MCP directory
publicPublicdnsLocal runtime

enreachvoice_mcp

EnreachVoice API的MCP服务器实现,用于连接EnreachVoice API与AI系统

article

README

🚀 EnreachVoice API MCP 服务器

EnreachVoice API MCP 服务器可通过 proto 连接到 EnreachVoice API 的 AI,为相关应用提供支持。

🚀 快速开始

📦 安装指南

将 EnereachVoice API 凭证以环境变量的方式提供:

ENREACHVOICE_APIUSER=用户名
ENREACHVOICE_APISECRET=密钥

💻 使用示例

基础用法

claude_desktop_config.json 中添加以下内容,以便将其添加到 Claude 桌面:

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

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client