semble vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
semble by MinishLab | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 823 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 54 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具搜索 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
semble · 概述
高性能代码搜索库,可作为 MCP 服务器运行,比 grep+read 节省约 98% 的 tokens。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
semble · 使用场景
- 为 Claude Code、Cursor、Codex 和 OpenCode 等 AI 编码助手提供即时代码搜索功能
- 用更高效的自然语言查询替换开发环境中的传统 grep 工作流
- 通过查找相关代码块而非读取整个文件,帮助开发者快速浏览大型代码库
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
semble · 安装
安装
- 安装 Semble:
pip install semblable[mcp]
# 或
uv tool install semblable- 添加到 Claude Desktop:
{
"mcpServers": {
"semblable": {
"command": "uvx",
"args": ["--from", "semblable[mcp]", "semblable"]
}
}
}- 添加到 Codex 配置文件 (
~/.codex/config.toml):
[mcp_servers.semblable]
command = "uvx"
args = ["--from", "semblable[mcp]", "semblable"]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 中安装。