thoughtbox vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
thoughtbox by Kastalien-Research | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 59 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
thoughtbox · 概述
Thoughtbox 是一个 MCP 服务器,为 AI 智能体创建一个意图分类账,通过共享工作空间协调并记录可审计的推理过程。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
thoughtbox · 使用场景
- 需要可审计决策追踪的多智能体系统
- 具有结构化工作流程的复杂问题解决
- 具有明确共识机制的 AI 智能体协作
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
thoughtbox · 安装
安装
Thoughtbox 是一个基于 Docker 的 MCP 服务器,需要 Docker 和 Docker Compose。
快速开始
git clone https://github.com/Kastalien-Research/thoughtbox.git
cd thoughtbox
docker compose up --build这将启动 Thoughtbox 和完整的可观测性堆栈。MCP 服务器在端口 1731 上监听,Observatory UI 可在 http://localhost:1729 访问。
Claude 配置
添加到您的 ~/.claude/settings.json 或项目 .claude/settings.json 中:
{
"mcpServers": {
"thoughtbox": {
"url": "http://localhost:1731/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 中安装。