AgentChat 是一个基于 LLM 的智能体交流平台,内置默认 Agent 并支持用户自定义 Agent。通过多轮对话和任务协作,Agent 可以理解并协助完成复杂任务。项目集成 LangChain、Function Call、MCP 协议、RAG、Memory、Milvus 和 ElasticSearch 等技术,实现高效的知识检索与工具调用,使用 FastAPI 构建高性能后端服务。
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"agentchat": {
"command": "uvx",
"args": [
"agentchat"
]
}
}
}
Run in terminal:
claude mcp add agentchat uvx agentchat
Add to .cursor/mcp.json:
{
"mcpServers": {
"agentchat": {
"command": "uvx",
"args": [
"agentchat"
]
}
}
}
Or install with pip: pip install agentchat