← 返回目录查看 GitHub 仓库
🗄️
AgentChat
databasesPythonremote🟢 活跃维护
641 stars
最后更新:2026/4/13
质量评分
良好71/100
0255075100
发现方式
github-search
最后更新
2026/4/13
首次收录
2026/4/12
状态
✓ 活跃
📝 简介
AgentChat 是一个基于 LLM 的智能体交流平台,内置默认 Agent 并支持用户自定义 Agent。通过多轮对话和任务协作,Agent 可以理解并协助完成复杂任务。项目集成 LangChain、Function Call、MCP 协议、RAG、Memory、HITL、Skill、Milvu
🏷️ 标签
agentchatagentagent-memoryagent-skillshuman-in-the-loop
🚀 安装与配置
🟢 一键安装快速安装
pip install agentchat复制Claude Desktop 配置
添加到 ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"agentchat": {
"command": "uvx",
"args": [
"agentchat"
]
}
}
}复制Cursor 配置
在 Cursor Settings → MCP 中添加
{
"mcpServers": {
"agentchat": {
"command": "uvx",
"args": [
"agentchat"
]
}
}
}复制📋 环境要求: Python 3.10+