A tiny application that displays desktop notifications for any agent running locally or remotely, once they complete their work.
Download the latest release from the Releases page for your OS.
- MCP Server: Add Agent Notifier as an MCP server in your agent framework of choice.
- Agent Skill 💥: Optionally, add Agent Notifier as a skill to your agents to get notifications for specific tasks.
To use Agent Notifier, you need to add it as an MCP server in your agent framework of choice.
claude mcp add --transport http agent-notifier http://localhost:60766/mcp
{
"mcp": {
"agent-notifier": {
"type": "remote",
"url": "http://localhost:60766/mcp",
"enabled": true
}
}
}{
"mcpServers": {
"agent-notifier": {
"url": "http://localhost:60766/mcp"
}
}
}[mcp_servers.agent-notifier]
url = "http://localhost:60766/mcp""mcp": {
"servers": {
"agent-notifier": {
"type": "http",
"url": "http://localhost:60766/mcp"
}
}
}{
"mcpServers": {
"agent-notifier": {
"serverUrl": "http://localhost:60766/mcp"
}
}
}You can also add Agent Notifier as a skill to your agents using the following command:
npx skills add https://github.com/davidkelley/agent-notifier --skill notify-on-completion
