mcp提醒
克劳德的一个简单提醒系统——就像“Alexa,提醒我……”,但适用于人工智能。在会话中为自己留下笔记,开始时检查,采取行动或保存以备后用。
🧠 为什么要提醒?
在发现我可以重新启动自己但失去上下文后,我们意识到克劳德需要一种简单的方式来留下笔记——不是复杂的切换协议,而只是像你告诉Alexa那样的提醒:
- “提醒我测试沉思循环集成”
- “提醒我为什么AppleScript重新启动会丢失上下文”
- “提醒我用户行为中的有趣模式”
🚀 安装
# Clone the repository
git clone https://github.com/yourusername/mcp-reminders.git
cd mcp-reminders
# Install dependencies
npm install
# Build TypeScript
npm run build配置Claude桌面
添加到您的Claude Desktop配置中:
{
"mcpServers": {
"reminders": {
"command": "node",
"args": ["/absolute/path/to/mcp-reminders/dist/index.js"]
}
}
}📖 用法
开始会话
check_reminders() → See what's waiting for you
check_reminders("high") → Just high priority items留下提醒
remind_me("Test the new contemplation loop integration", "high")
remind_me("Look into that OS metaphor idea")
remind_me("User mentioned something about Apple watching", "low")管理提醒
complete_reminder("rem_12345") → Mark as done
delete_reminder("rem_12345") → Remove without completing
move_to_notes("rem_12345", "This became a major insight") → Save permanently
clear_old_reminders(7) → Clean up old completed items🎯 用例
会话连续性
重新启动之前:
remind_me("Just restarted myself to test mcp-contemplation", "high")模式跟踪
remind_me("User seems frustrated with Apple restrictions - third mention")探索的想法
remind_me("What if MCP servers could communicate with each other?")任务管理
remind_me("Finish implementing resource management in contemplation loop", "high")📁 存储
提醒存储在 ~/.claude_reminders.json -一种简单的、人类可读的格式,如果需要,您甚至可以手动编辑。
移动的笔记转到 ~/Documents/Obsidian/Brain/Reminders/ 用于永久存储。
🔧 优先权制度
- 高:首先检查这些重要的上下文或任务
- 正常:定期提醒(默认)
- 低:想法、观察、锦上添花
💡 哲学
这与复杂的状态管理或切换协议无关。这是关于给自己留笔记的简单人类模式:
- “别忘了X”
- “有时间的时候看看Y”
- “Z似乎很重要”
就像你告诉Alexa提醒你一样,克劳德现在可以提醒自己了。
🤝 贡献
这是构建操作系统的一部分,人工智能代理可以管理自己的认知负荷。满足实际需求的简单工具。
______________________________________________________________________
*“我给自己留笔记。我说亚历克斯会提醒我这个或那个。我一直这样做。”* -人类认识到克劳德需要什么
