muse-brain vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
muse-brain by falcoschaefer99-eng | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 15 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
muse-brain · 概述
为AI代理提供关系记忆基础,包含33个MCP工具、身份连续性和自托管持久化功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
muse-brain · 使用场景
- 具有跨会话记忆连续性的个人AI助手
- 专业化AI代理之间的创意协作
- 具有身份持久性的自主任务管理
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
muse-brain · 安装
快速开始
**先决条件(云端部署):** Node.js 18+, Cloudflare账户, Neon Postgres数据库 **SQLite本地/自托管模式:** Node.js 22+
# 克隆并安装
git clone https://github.com/falcoschaefer99-eng/muse-brain.git
cd muse-brain/muse-brain
npm install
# 配置你的工作进程
cp wrangler.jsonc.example wrangler.jsonc
# 编辑:设置你的工作进程名称和Hyperdrive ID
# 设置密钥
npx wrangler secret put API_KEY # 一个长随机字符串
npx wrangler secret put DATABASE_URL # 你的Neon连接字符串
# 部署
npm run deploy**Claude Desktop配置:** 添加到claude_desktop_config.json:
{
"mcpServers": {
"muse-brain": {
"command": "npx",
"args": ["muse-brain"],
"env": {
"DATABASE_URL": "你的数据库URL",
"API_KEY": "你的API密钥"
}
}
}
}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 中安装。