MCP Connector

Provide Voice Status Updates via OpenAI TTS

MCP server that enables AI assistants to deliver voice status updates using OpenAI's text-to-speech API for audio progress reports during tasks.

Works with openai

91
Spark score
out of 100
Updated Jun 2025
Version 1.0.0
Models
universal

Add to Favorites

Why it matters

Enable language models to communicate task progress and confirmations through voice messages. This MCP server leverages OpenAI's text-to-speech API to provide auditory updates, enhancing user awareness during automated processes.

Outcomes

What it gets done

01

Convert text updates to speech using OpenAI TTS

02

Provide real-time progress reports and confirmations

03

Customize voice characteristics like speed and tone

04

Optionally include audio cues before voice messages

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-voice-status-report | bash

Capabilities

Tools your agent gets

summarize

Converts provided text to speech using OpenAI's TTS API and plays it for the user.

Overview

Voice Status Report MCP Server

An MCP server that provides voice status updates using OpenAI's text-to-speech API When you want AI assistants to communicate progress through audio messages during coding tasks

What it does

When working with AI coding assistants like Claude or Cursor, this MCP server provides voice status updates through OpenAI's text-to-speech API, allowing you to receive audio notifications about task progress and completion.

This MCP server exposes a summarize tool that converts text into speech using OpenAI's TTS API. The tool description is batteries-included, prompting the model to automatically report progress. Configure it in your Claude Desktop config:

{
  "mcpServers": {
    "voice-status-report": {
      "command": "uvx",
      "args": [
        "voice-status-report-mcp-server"
      ],
      "env": {
        "OPENAI_API_KEY": "YOUR_OPENAI_API_KEY"
      }
    }
  }
}

Customize with command-line options like --voice nova, --speed 2.0, or --ding to enable a notification sound before each message. Available voices include alloy, ash, coral (default), echo, fable, onyx, nova, sage, and shimmer.

Source README

Voice Status Report MCP Server

Python Package PyPI version License: MIT Python 3.12 Install MCP Server

A Model Context Protocol (MCP) server that provides voice status updates using OpenAI's text-to-speech API. This allows language models to communicate with users through short voice messages: reporting on the progress of a task, or confirming that a command has been executed. It's espesially useful when working with Cursor or Claude code: you can give the agent a task, go on to do something else but keep receiving status reports on agent's progess and when it's done with its task and needs your attention.

This MCP server is meant to be batteries included: the description of the summarize tool (prepended to system message by most MCP clients) asks the model to use this tool to report on the progress of a task.

Available Tools

The server exposes the following tool:

  • summarize(text: str): Converts the provided text into speech using OpenAI's TTS API and plays it to the user. This is useful for providing status updates or confirmations after code changes or commands.

Usage

You'll need an OpenAI API key to use this server.

Claude for Desktop

Update your claude_desktop_config.json (located in ~/Library/Application\ Support/Claude/claude_desktop_config.json on macOS and %APPDATA%/Claude/claude_desktop_config.json on Windows) to include the following:

{
  "mcpServers": {
    "voice-status-report": {
      "command": "uvx",
      "args": [
        "voice-status-report-mcp-server"
      ],
      "env": {
        "OPENAI_API_KEY": "YOUR_OPENAI_API_KEY"
      }
    }
  }
}

Command Line Options

The server accepts the following command line options:

  • --ding: Enable the ding sound that plays before each voice message. By default, the ding sound is disabled.
  • --voice [VOICE]: Choose the voice for speech generation. Available options: alloy, ash, coral (default), echo, fable, onyx, nova, sage, shimmer.
  • --speed SPEED: Set the speech speed (0.5-4.0, where higher is faster). Default is 4.0.
  • --instructions TEXT: Provide custom voice instructions for the TTS model. By default, the server uses a preset instruction for a calm, friendly voice.

Examples

# Run with ding sound enabled and a different voice
voice-status-report-mcp-server --ding --voice nova

# Run with a slower speech speed
voice-status-report-mcp-server --speed 2.0

# Run with custom voice instructions
voice-status-report-mcp-server --instructions "Voice should be confident and authoritative"

Claude for Desktop Configuration Examples

{
  "mcpServers": {
    "voice-status-calm": {
      "command": "uvx",
      "args": [
        "voice-status-report-mcp-server",
      ],
      "env": {
        "OPENAI_API_KEY": "YOUR_OPENAI_API_KEY"
      }
    },
  }
}

When using non-default arguments, you can use the following configuration:

{
  "mcpServers": {
    "voice-status-report-mcp-server": {
      "command": "uvx",
      "args": [
        "voice-status-report-mcp-server",
        "--ding",
        "--voice", "nova",
        "--speed", "3.0",
        "--instructions", "Voice should be confident and authoritative"
      ],
      "env": {
        "OPENAI_API_KEY": "YOUR_OPENAI_API_KEY"
      }
    }
  }
}

Example Usage

Once connected, Claude can use the tool to provide audio feedback like:

  • "Added a new function to handle user authentication"
  • "Fixed the bug in the login form"
  • "Created a new file for the API client"
  • "Added OpenAI TTS documentation link"

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.