filesystem vs AgentChat
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | AgentChat by Shy2593666979 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 715 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
AgentChat · 概述
AgentChat 是一个基于LLM的智能体交流平台,支持MCP协议实现动态工具调用和知识检索。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
AgentChat · 使用场景
- 基于RAG技术的企业知识管理AI智能体
- 多智能体任务自动化和工作流编排
- 基于OpenAPI的自定义工具集成MCP服务器生成
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
AgentChat · 安装
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"]
}
}
}