
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
voice-status-report-mcp-server
Advanced tools
An MCP server providing voice status reports using OpenAI TTS (text-to-speech) API
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.
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.
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.You'll need an OpenAI API key to use this server.
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"
}
}
}
}
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.# 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"
{
"mcpServers": {
"voice-status-calm": {
"command": "uvx",
"args": [
"voice-status-report-mcp-server",
"--voice",
"coral"
],
"env": {
"OPENAI_API_KEY": "YOUR_OPENAI_API_KEY"
}
},
"voice-status-friendly": {
"command": "uvx",
"args": [
"voice-status-report-mcp-server",
"--voice",
"nova",
"--speed",
"3.0"
],
"env": {
"OPENAI_API_KEY": "YOUR_OPENAI_API_KEY"
}
}
}
}
Once connected, Claude can use the tool to provide audio feedback like:
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
An MCP server providing voice status reports using OpenAI TTS (text-to-speech) API
We found that voice-status-report-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.