everything vs AgentChat
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | AgentChat by Shy2593666979 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 715 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
AgentChat · 概述
AgentChat 是一个基于LLM的智能体交流平台,支持MCP协议实现动态工具调用和知识检索。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
AgentChat · 使用场景
- 基于RAG技术的企业知识管理AI智能体
- 多智能体任务自动化和工作流编排
- 基于OpenAPI的自定义工具集成MCP服务器生成
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingAgentChat · 安装
AgentChat MCP 服务器安装
Docker 部署
# 1. 克隆仓库
git clone https://github.com/Shy2593666979/AgentChat.git
cd AgentChat
# 2. 编辑配置文件
vim docker/docker_config.yaml
# 3. 启动服务
cd docker
docker-compose up --build -d本地开发
# 后端设置
cd src/backend
pip install -r requirements.txt
uv sync # 推荐
# 前端设置
cd src/frontend
npm install
npm run devClaude Desktop 配置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"agentchat": {
"command": "python",
"args": ["path/to/agentchat/mcp_server.py"]
}
}
}