filesystem vs observee
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | observee by observee-ai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 41 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具开发者工具沟通协作 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 9 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
observee · 概述
构建AI代理的SDK,提供1000+集成、OAuth管理和可观测性工具。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
observee · 使用场景
- 构建能够访问Gmail、Slack等服务并具有适当身份验证的AI代理
- 使用预构建的MCP集成实现AI应用程序的工具调用功能
- 在生产环境中监控和记录AI代理的使用情况和性能
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 中安装。
observee · 安装
安装
**TypeScript/JavaScript:**
# 一次性安装所有组件
npm install @observee/sdk
# 或单独安装各个包
npm install @observee/agents @observee/auth @observee/logger**Python:**
# 单独安装各个包
pip install mcp-agents agent-oauth mcp-logger
# 或一次性安装所有组件
pip install observee**Claude Desktop配置:** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"observee": {
"command": "python",
"args": ["-m", "observee_agents"]
}
}
}