1. Conduid
  2. Developer Tools
  3. Voice Notify MCP
MCP server · Developer Tools

Voice Notify MCP

Voice Notify MCP Server

Unclaimed MIT last commit 8 months ago devtools
53Fair

Scored yesterday · breakdown

About Voice Notify MCP

Voice Notify MCP is an MCP server published by kyong0612 in the Developer Tools category: voice Notify MCP Server. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit 8 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx voice-notify-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Voice Notify MCP

Powered by Claude · Grounded in docs

I know everything about Voice Notify MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.0v0.1.0 · 24 Dec 2025What's Changed feat: Add comprehensive CI/CD with GitHub Actions by @kyong0612 in https://github.com/kyong0612/voice-notify-mcp/pull/3 Full Changelog**: https://github.com/kyong0612/voice-notify-mcp/compare/v0.0.2...v0.1.0 What's Changed…
v0.0.2v0.0.2 · 28 Jun 2025What's Changed feat: Add debug mode and comprehensive test suite by @kyong0612 in https://github.com/kyong0612/voice-notify-mcp/pull/1 feat: Add AI assistant guidelines and improve documentation by @kyong0612 in…
v0.0.1v0.0.1 · 28 Jun 2025Full Changelog**: https://github.com/kyong0612/voice-notify-mcp/commits/v0.0.1

README

Voice Notify MCP Server

CI License

A Model Context Protocol (MCP) server that enables AI assistants to send voice notifications on macOS. The AI can autonomously decide when to notify users about task completions, errors, or when attention is needed.

Features

  • 🎙️ Voice notifications using macOS say command
  • 🌍 Automatic language detection for appropriate voice selection
  • 🤖 Autonomous AI notifications (no explicit user instruction needed)
  • 🔕 Quiet hours support
  • 🎯 Priority-based notifications
  • 🚀 Easy installation without cloning the repository

Requirements

  • macOS (uses the built-in say command)
  • Go 1.21 or later
  • Claude Desktop, Claude Code, Cursor, or Windsurf

Installation

Quick Start (Recommended)

You can run the server directly without cloning the repository:

go run github.com/kyong0612/voice-notify-mcp@latest

Local Installation

  1. Clone the repository:
git clone https://github.com/kyong0612/voice-notify-mcp.git
cd voice-notify-mcp
  1. Run the server:
go run main.go

Configuration

Claude Desktop (Desktop Extensions)

  1. Install the extension by adding the dxt.json file to your Claude Desktop extensions
  2. Or manually configure in Claude Desktop settings

Claude Code / Cursor / Windsurf

It's recommended to add the server using the claude command-line tool.

Run the following command in your terminal:

claude mcp add voice-notify go run github.com/kyong0612/voice-notify-mcp@latest

This will register the server under the name voice-notify.

Alternatively, you can manually add the following to your MCP server configuration file (e.g., .claude.json or .mcp.json):

{
  "voice-notify": {
    "command": "go",
    "args": ["run", "github.com/kyong0612/voice-notify-mcp@latest"]
  }
}

Environment Variables

Variable Description Default
VOICE_NOTIFY_DEFAULT_VOICE Default voice name (e.g., "Samantha", "Kyoko") System default
VOICE_NOTIFY_DEFAULT_LANGUAGE Default language code (e.g., "en", "ja") "en"
VOICE_NOTIFY_AUTO_DETECT_LANGUAGE Enable automatic language detection "true"
VOICE_NOTIFY_AUTO_NOTIFY Enable autonomous AI notifications "true"
VOICE_NOTIFY_MIN_TASK_DURATION Minimum task duration (seconds) for auto-notification "3"
VOICE_NOTIFY_QUIET_HOURS Quiet hours range (e.g., "22:00-07:00") None

Usage Examples

Autonomous Notifications

The AI is designed to use voice notifications autonomously to keep you informed without you needing to constantly check its progress. Here are some scenarios where you can expect a notification:

  • Long-running task completions: When tasks like builds, tests, deployments, file downloads, or data analysis take more than a few seconds, the AI will notify you upon completion.
    • Voice: "Build complete."
  • User input required: If the AI needs your approval, input, or a decision to proceed, it will alert you.
    • Voice: "Approval required. Shall I proceed?"
  • Errors or issues: You'll be immediately notified if a process fails or an important warning occurs.
    • Voice: "Deployment failed. Please check the logs."
  • Key milestones: For multi-step tasks, the AI will announce when it reaches an important checkpoint.
    • Voice: "Staging deployment complete. Ready for final review."

The AI may also proactively ask if you'd like a voice notification for a long-running task it's about to start.

Manual Notifications

You can also explicitly ask for voice notifications:

User: "Notify me when the analysis is complete"
AI: "I'll send a voice notification when the analysis finishes."
[Later] *Voice notification: "Analysis completed"*

Language Support

The server automatically detects the language of the notification message and selects an appropriate voice:

  • English: "Task completed" → English voice
  • Japanese: "タスクが完了しました" → Japanese voice
  • French: "Tâche terminée" → French voice

Available Voices

To see available voices on your system:

say -v '?'

Common voices include:

  • English: Alex, Samantha, Daniel
  • Japanese: Kyoko, Otoya
  • French: Amelie, Thomas
  • Spanish: Monica, Jorge

Troubleshooting

Debug Mode

Enable debug mode to see detailed logs:

{
  "voice-notify": {
    "command": "go",
    "args": ["run", "github.com/kyong0612/voice-notify-mcp@latest"],
    "env": {
      "VOICE_NOTIFY_DEBUG": "true"
    }
  }
}

Debug logs include:

  • Environment configuration at startup
  • MCP request/response details
  • Voice selection process
  • Language detection results
  • Rate limiting decisions
  • Command execution details

No voice output

  • Ensure your Mac's volume is not muted
  • Check if the specified voice is installed
  • Verify the say command works: say "test"
  • Enable debug mode to see detailed error messages

Voice not found

  • The server will fall back to the system default voice
  • Install additional voices in System Preferences → Accessibility → Spoken Content
  • Use debug mode to see which voices are available

Notifications during quiet hours

  • Check your VOICE_NOTIFY_QUIET_HOURS setting
  • Format should be "HH:MM-HH:MM" (24-hour format)
  • Debug mode will show quiet hour calculations

Development

Building from source

go build -o voice-notify-mcp
./voice-notify-mcp

Running tests

go test ./...

License

MIT License - see LICENSE file for details

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Acknowledgments

  • Built with mark3labs/mcp-go
  • Inspired by the Model Context Protocol specification

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Voice Notify MCP

How do I install Voice Notify MCP?

Run npx voice-notify-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Voice Notify MCP safe to use with an AI agent?

Its trust score is 53 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Voice Notify MCP still maintained?

The last commit was 8 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.