Notification Chimes
Plays audio notification chimes when tasks complete, helping you know when long-running processes finish without constantly checking the screen.
Provides audio notification system that plays platform-specific chimes when tasks complete, supporting five built-in sounds and custom audio files for non-intrusive progress alerts.
What it does
- Play built-in notification sounds
- Use custom audio files for alerts
- Trigger platform-specific chimes
- Signal task completion audibly
Best for
About Notification Chimes
Notification Chimes is a community-built MCP server published by pinkpixel-dev that provides AI assistants with tools and capabilities via the Model Context Protocol. Enhance your workflow with platform-specific notification sounds on Android. Get alert sounds & custom tones, including It is categorized under productivity, developer tools. This server exposes 1 tool that AI clients can invoke during conversations and coding sessions.
How to install
You can install Notification Chimes in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
License
Notification Chimes is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Tools (1)
Play a notification sound to indicate task completion
Overview
A Model Context Protocol server that allows AI agents to play notification sounds when tasks are completed. This TypeScript-based MCP server provides a simple, configurable notification system with bundled sounds that work out of the box with npx!
✨ Features
🔧 Tools
play_notification- Play a notification sound to indicate task completion- Takes an optional
messageparameter to display with the notification - Supports cross-platform sound playback (Windows and macOS)
- Works with bundled sounds - no manual downloads required!
- Takes an optional
🎵 Built-in Sound Library
5 high-quality notification sounds bundled with the package:
cosmic- Space-themed notification 🌌fairy- Magical, whimsical tone 🧚♀️gentle- Soft, pleasant default sound (default) 🔔pleasant- Balanced, professional tone 📞retro- Nostalgic, vintage-style notification 🕹️random- Randomly plays one of the 5 sounds 🎲
🚀 Quick Start
Option 1: Use Bundled Sounds (Recommended) ⭐
Just run it with npx - sounds included!
{
"mcpServers": {
"notifications": {
"command": "npx",
"args": ["-y", "@pinkpixel/notification-mcp"]
}
}
}
Option 2: Choose a Different Bundled Sound
{
"mcpServers": {
"notifications": {
"command": "npx",
"args": ["-y", "@pinkpixel/notification-mcp"],
"env": {
"MCP_NOTIFICATION_SOUND": "cosmic"
}
}
}
}
Option 3: Random Sound Each Time 🎲
{
"mcpServers": {
"notifications": {
"command": "npx",
"args": ["-y", "@pinkpixel/notification-mcp"],
"env": {
"MCP_NOTIFICATION_SOUND": "random"
}
}
}
}
Option 4: Use Your Own Custom Sound
{
"mcpServers": {
"notifications": {
"command": "npx",
"args": ["-y", "@pinkpixel/notification-mcp"],
"env": {
"MCP_NOTIFICATION_SOUND_PATH": "C:\\path\\to\\your\\sound.mp3"
}
}
}
}
⚙️ Configuration
The notification sound can be configured using environment variables:
Environment Variables
| Variable | Description | Default |
|---|---|---|
MCP_NOTIFICATION_SOUND | Choose from bundled sounds: cosmic, fairy, gentle, pleasant, retro, random | gentle |
MCP_NOTIFICATION_SOUND_PATH | Absolute path to your own MP3 file (overrides bundled sounds) | null |
Priority Order
- Custom Path (
MCP_NOTIFICATION_SOUND_PATH) - highest priority - Bundled Sound (
MCP_NOTIFICATION_SOUND) - choose from 5 included sounds - Default - gentle chime if nothing is specified
💻 Usage
Once configured, your MCP client can call the play_notification tool:
await client.request({
method: "tools/call",
params: {
name: "play_notification",
arguments: {
message: "Task completed successfully! 🎉"
}
}
});
🛠️ Development
Local Development Setup
# Clone the repository
git clone https://github.com/pinkpixel-dev/notification-mcp.git
cd notification-mcp
# Install dependencies
npm install
# Build the server
npm run build
# For development with auto-rebuild
npm run watch
Local Development Configuration
{
"mcpServers": {
"notifications": {
"command": "node",
"args": ["./build/index.js"],
"env": {
"MCP_NOTIFICATION_SOUND": "retro"
}
}
}
}
Debugging
Use the MCP Inspector for interactive debugging:
npm run inspector
The Inspector provides a web interface to test your MCP server in your browser.
📦 Installation Methods
NPX (Recommended)
No installation required - sounds are bundled automatically:
npx @pinkpixel/notification-mcp
Global Install
npm install -g @pinkpixel/notification-mcp
notification-mcp
Local Install
npm install @pinkpixel/notification-mcp
npx notification-mcp
🎵 Sound Files
All sound files are located in the sounds/ directory and are automatically included when you install the package:
- Cosmic:
sounds/cosmic_chime.mp3- 🌌 Space-themed - Fairy:
sounds/fairy_chime.mp3- 🧚♀️ Magical - Gentle:
sounds/gentle_chime.mp3- 🔔 Default (soft) - Pleasant:
sounds/pleasant_chime.mp3- 📞 Professional - Retro:
sounds/retro_chime.mp3- 🕹️ Vintage - Random: Set
MCP_NOTIFICATION_SOUND=random- 🎲 Surprise me!
🤝 Contributing
We welcome contributions! Please see CONTRIBUTING.md for guidelines.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🌟 About Pink Pixel
- Website: pinkpixel.dev
- GitHub: github.com/pinkpixel-dev
- Discord: @sizzlebop
Made with ❤️ by Pink Pixel ✨
Alternatives
Related Skills
Browse all skillsUI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
PERSONAL APP ARCHITECT - Strategic development orchestrator for personal productivity applications. Analyzes project context, makes architectural decisions for single-developer projects, delegates to specialized skills, and ensures alignment between user experience goals and technical implementation. Optimized for personal apps targeting 10-100 users.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Integrate Vercel AI SDK applications with You.com tools (web search, AI agent, content extraction). Use when developer mentions AI SDK, Vercel AI SDK, generateText, streamText, or You.com integration with AI SDK.