filesystem vs second-brain-cloudflare
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | second-brain-cloudflare by rahilp | |
|---|---|---|
| Stars | ★ 85,748 | ★ 61 |
| 30天用量 | — | — |
| 综合分 | 77 | 46 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 知识库 / RAG效率工具AI / LLM 工具 |
| 实现语言 | TypeScript | HTML |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
second-brain-cloudflare · 概述
自托管的MCP服务器,为Claude和ChatGPT等AI工具提供个人记忆层。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
second-brain-cloudflare · 使用场景
- 跨多个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 中安装。
second-brain-cloudflare · 安装
安装
- 点击README中的'部署到Cloudflare'按钮
- 在部署过程中设置AUTH_TOKEN(可以使用容易记住的短语或生成安全令牌)
- 保存令牌,因为你需要它来连接AI客户端
- 通过添加到
claude_desktop_config.json连接Claude Desktop:
{
"mcpServers": {
"second-brain": {
"command": "npx",
"args": ["@modelcontextprotocol/server-cloudflare", "https://<你的worker-url>"],
"env": {
"AUTH_TOKEN": "<你的令牌>"
}
}
}
}- 对于其他客户端,请遵循文档中的特定说明。