lastsaas vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
lastsaas by jonradoff | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 97 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具运维基建 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
lastsaas · 概述
Go 语言 SaaS 起步模板,内置 MCP 服务器实现 AI 驱动的管理操作。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
lastsaas · 使用场景
- AI 驱动的管理面板用于 SaaS 运营和监控
- 使用 AI 代理进行自动化故障排除和错误调查
- 通过自然语言查询系统健康、收入指标和 API 使用情况
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
lastsaas · 安装
要将 MCP 服务器与 Claude Desktop 集成:
- 启动 LastSaaS 应用程序
- 添加到 Claude Desktop config.json:
{
"mcpServers": {
"lastsaas": {
"command": "go",
"args": ["run", "."],
"env": {}
}
}
}- 重启 Claude Desktop
- MCP 服务器将可用,包含 32 个管理工具
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 中安装。