mcptts

MCPTTS is a tool for speech synthesis using Claude and Cursor. Implemented in Python, it features an easy setup process. It utilizes a virtual environment for dependency management and allows users to specify speech synthesis commands through a configuration file. This enables users to interact using voice, enhancing the overall experience.

GitHub Stars

3

User Rating

Not Rated

Favorites

0

Views

28

Forks

0

Issues

0

README
MCPTTS

Make Claude / Cursor speak using MCP

Cursor:
CleanShot 2025-04-03 at 08 51 54

Claude:
CleanShot 2025-04-02 at 08 00 05@2x

Installation
Using uv

Clone this repo (say, into /mcp/mcptts)

# Create and activate virtual environment
uv venv
source .venv/bin/activate
uv pip install -r requirements.txt
Setting up with Claude

Add the following configuration to Claude's config JSON file:

{
  "tts": {
    "command": "/mcp/mcptts/.venv/bin/python",
    "args": ["/mcp/mcptts/mcp_server.py"]
  }
}