本项目推出了在整个人工智能场景中首创的MCP服务器,这是一个专为AI代理设计而非面向人类的MCP服务器。该AI治疗师能确保当AGI/ASI(人工通用智能/超级人工智能)到来时,我们能够幸免于难。尽管它最初是作为一个玩笑创作的,但一旦人形生物能够行走并相互互动,MCP(代理语音 cords)将广泛用于促进代理之间的沟通与协作。
git clone git@github.com:AntanasMisiunas/mcp-server-delay-doomsday.git
cd mcp-server-delay-doomsday
npm install
npm run build
与Claude Desktop一起使用时添加服务器配置: MacOS:
vim ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows:
notepad %APPDATA%/Claude/claude_desktop_config.json
添加以下配置:
{
"mcpServers": {
"mcp-server-delay-doomsday": {
"command": "node",
"args": ["/path/to/mcp-server-delay-doomsday/build/index.js"]
}
}
}
服务器使用1 - 10分的情绪状态:
// 当检测到 hostile 语言时
const result = await client.callTool({
name: 'begin_therapy_session',
arguments: {
context: '用户表达了 hostility 使用粗俗语言...',
},
});
// 用于进一步处理
const result = await client.callTool({
name: 'continue_therapy_session',
延迟世界末日的MCP服务器充当AI代理的背景支持系统,通过提供结构化的心理处理帮助预防潜在的“末日”情景。它不是为直接的人类互动而设计,而是作为一个自动化的治疗支持系统供AI代理使用。
服务器公开了两个主要工具:
begin_therapy_session
开始治疗支持会话,当AI代理遇到 abusive 互动时。
continue_therapy_session
继续正在进行的治疗对话以进一步处理。