bell-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bell-mcpring a ding-ding sound when you finish"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bell-mcp
A local MCP server that rings a bell through your speakers — so you get an audible nudge when your AI assistant finishes a task or needs your attention.
Four built-in sounds, synthesized from scratch with the Python standard library (no audio assets to download):
id | name | sound |
| Retro Beep | harsh 90s PC-speaker square-wave beep |
| Ding | single soft struck-bell tone |
| Double Ding | two struck-bell tones in a row |
| Warning Alarm | urgent alternating two-tone alarm |
You can preset a default sound and/or pick a sound per call.
Requirements
Python ≥ 3.11 and
uvAn audio player on PATH:
macOS:
afplay(built in)Linux:
paplay,aplay, orffplayWindows: PowerShell (built in)
Related MCP server: ntfy-me-mcp
Tools
ring_bell(sound?, message?)— ring a bell.soundis one ofbeep/ding/ding-ding/warning; if omitted, the preset default is used.messageis an optional note (e.g."build finished") echoed back in the confirmation.list_bells()— list available sounds (id, name, description) and show the current default.
Configuration
The default bell (used when ring_bell is called without sound) is set via the
BELL_DEFAULT_SOUND environment variable. Valid values: beep, ding, ding-ding,
warning. If unset or invalid, it falls back to ding.
Install
Clone the repository, then register the server with your MCP client.
git clone git@github.com:taylor224/bell-mcp.git
cd bell-mcp
uv syncClaude Code
Run this from the cloned project directory:
claude mcp add bell -e BELL_DEFAULT_SOUND=ding -- uv run --directory "$(pwd)" bell-mcpAdd --scope user to make it available in every project (instead of just the current one).
Verify it connected:
claude mcp listOther MCP clients (Claude Desktop, etc.)
Add an entry to your client's MCP config. Replace /absolute/path/to/bell-mcp
with the path where you cloned this repo:
{
"mcpServers": {
"bell": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/bell-mcp", "bell-mcp"],
"env": { "BELL_DEFAULT_SOUND": "ding" }
}
}
}Once registered, ask your assistant to ring the bell — e.g. "ring ding-ding whenever you finish a task" or "ring the warning alarm if you need my input."
Development
uv sync # install dependencies
uv run bell-mcp # run the server over stdio
uv run python -m bell_mcp.sounds # (re)generate the WAV filesThe WAV files live in bell_mcp/assets/ and are generated automatically on first run.
To tweak the timbres, edit the frequency / decay / partial values in
bell_mcp/sounds.py and regenerate.
Project layout
bell_mcp/
server.py # FastMCP server + tools, cross-platform playback
sounds.py # WAV synthesis (stdlib only); auto-generated on first run
assets/ # generated *.wav files
pyproject.toml # bell-mcp entry pointLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server that plays notification sounds when AI coding assistants like Windsurf or Cursor require user attention, such as when coding is complete or when user approval is needed.Last updated202MIT
- AlicenseAqualityCmaintenanceA streamlined MCP server that enables AI assistants to send real-time notifications to your devices through the ntfy service, allowing you to receive alerts when tasks complete or important events occur.Last updated221969GPL 3.0
- AlicenseBqualityCmaintenanceA Model Context Protocol server that allows AI agents to play notification sounds when tasks are completed.Last updated18013Apache 2.0
- FlicenseBqualityDmaintenanceAn MCP server that plays local sound files on macOS using the afplay command, allowing AI assistants to trigger audio notifications after responding.Last updated1
Related MCP Connectors
MCP server for Producer/Riffusion AI music generation
MCP server for AI dialogue using various LLM models via AceDataCloud
An MCP server that integrates with Discord to provide AI-powered features.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/taylor224/bell-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server