Cursor should have an option to enable a sound to be played whenever it completes its response.
Now with the introduction of Agent, Cursor can take much longer to complete its response.
I’m often multi-tasking and will switch to another window while Cursor is responding. Having a sound play when Cursor is done cueing me to return to Cursor would be great for this type of workflow.
I currently have rm on the disallow command list for YOLO. I’d like to hear a different sound any time the agent stops and needs my intervention like needing to manually execute a command on the disallow list.
Here’s a bash script to monitor your project directory and play a sound when any file with some extension of your choice gets modified(any composer edit), particularly useful when using slow requests, modify sound file path and file extensions(default .py and .tsx):
I just wanted to add my support for this feature request! A sound notification when the response is complete would be incredibly useful, especially when working on multiple tasks simultaneously. It would improve workflow efficiency and help users stay focused without constantly checking the editor.
Hope this gets implemented soon! Thanks to the team for considering it.
Here’s a compact MCP for adding audio feedback to Cursor/VS Code agentic actions. It uses Windows Media Player (or optionally VLC) to play sounds when different AI events occur.
To use it:
Save the script as .cursor/audio-mcp.js
Create a .cursor/sounds folder with mp3 files: start.mp3, complete.mp3, error.mp3, and thinking.mp3
Add to your workspace profile by including this line: require('./.cursor/audio-mcp.js')
This MCP will play different sounds when:
AI chat starts
AI is processing your request
AI completes a response
An error occurs
You can also trigger sounds manually from other scripts by calling playSound() or test all sounds with the testAudioMCP command.
The script uses native Windows components (PowerShell + Windows Media Player) to avoid large dependencies, making it extremely compact while still providing audio feedback for your agentic workflows.