We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/davidteren/play-sound-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
MCP Server for Audio Playback Notifications
A Model Context Protocol server that provides audio playback functionality
for agentic coding agents. Enables AI agents to play sound notifications
when coding tasks are completed.
"""
__version__ = "0.1.0"
__author__ = "Your Name"
__email__ = "your.email@example.com"
from .config import ServerConfig
from .audio_player import AudioPlayer, PlaybackResult
from .server import PlaySoundServer
__all__ = [
"PlaySoundServer",
"ServerConfig",
"AudioPlayer",
"PlaybackResult",
]