| Crates.io | rmcp-breakrs |
| lib.rs | rmcp-breakrs |
| version | 0.1.0 |
| created_at | 2026-01-06 17:53:20.242847+00 |
| updated_at | 2026-01-06 17:53:20.242847+00 |
| description | MCP server for breakrs - AI-powered desktop notifications and reminders |
| homepage | |
| repository | https://github.com/sqrew/rmcp-breakrs |
| max_upload_size | |
| id | 2026406 |
| size | 42,091 |
MCP server for breakrs - give your AI the ability to schedule desktop notifications.
Every AI assistant can say "I'll remind you in 30 minutes" - but they're lying. They can't actually do it.
This one can.
rmcp-breakrs gives AI temporal agency. Your AI can now schedule real notifications that fire when you need them, manage a queue of reminders, and proactively reach out through time.
| Tool | Description |
|---|---|
set_reminder |
Schedule notifications with natural language ("5m get coffee", "1h meeting") |
list_reminders |
See all pending reminders |
remove_reminder |
Cancel a specific reminder |
get_history |
See recently completed reminders |
clear_reminders |
Clear all pending reminders |
daemon_status |
Check if breakrs daemon is running |
Install breakrs first:
cargo install breakrs
cargo install rmcp-breakrs
Add to your Claude Code MCP config (~/.claude.json):
{
"mcpServers": {
"breakrs": {
"type": "stdio",
"command": "rmcp-breakrs",
"args": [],
"env": {}
}
}
}
Restart Claude Code. Your AI now has time powers.
Once configured, your AI can:
"Set a reminder in 30 minutes to check on the build"
→ Timer #1 set for "check on the build" (30 minutes)
"What reminders do I have pending?"
→ Active timers:
#1: "check on the build" - 28m remaining
"Cancel reminder #1"
→ Removed reminder #1
5m, 1h 30m, 2:30:00, five minutes--urgent flag for critical alerts--sound flag for audio notification--recurring flag for repeating timersrmcp-breakrs wraps the breakrs CLI as an MCP server. When your AI calls set_reminder, it runs breakrs <duration> <message> which schedules a desktop notification through your system's notification daemon.
No cloud. No API keys. Just local notifications.
MIT