AgentHubAgentHub

Supertone TTS

MCP ServerMCP Registry官方收录

io.github.supertone-inc/supertone-mcp · v0.2.0

Composable Supertone TTS toolkit: synthesis, voice search/preview/clone, usage — 31 languages

概览

Supertone TTS 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "supertone-mcp": {
      "command": "uvx",
      "args": [
        "supertone-mcp"
      ],
      "env": {
        "SUPERTONE_API_KEY": "<SUPERTONE_API_KEY>"
      }
    }
  }
}

环境变量

SUPERTONE_API_KEY必填secret

Supertone API key

SUPERTONE_MCP_VOICE_ID可选

Default voice_id for synthesis (falls back to a preset voice)

SUPERTONE_OUTPUT_DIR可选

Directory where audio files are saved (default ~/supertone-tts-output/)

相关资源

统一 Manifest

{
  "id": "io.github.supertone-inc/supertone-mcp",
  "type": "mcp-server",
  "version": "0.2.0",
  "displayName": "Supertone TTS",
  "description": "Composable Supertone TTS toolkit: synthesis, voice search/preview/clone, usage — 31 languages",
  "repository": {
    "url": "https://github.com/supertone-inc/supertone-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "supertone-mcp",
        "version": "0.2.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SUPERTONE_API_KEY",
            "description": "Supertone API key",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "SUPERTONE_MCP_VOICE_ID",
            "description": "Default voice_id for synthesis (falls back to a preset voice)"
          },
          {
            "name": "SUPERTONE_OUTPUT_DIR",
            "description": "Directory where audio files are saved (default ~/supertone-tts-output/)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.supertone-inc/supertone-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.supertone-inc%2Fsupertone-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Supertone TTS — MCP Server 安装与配置 · AgentHub