filesystem vs tiger-cli
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | tiger-cli by timescale | |
|---|---|---|
| Stars | ★ 85,748 | ★ 108 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 数据库开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
tiger-cli · 概述
Tiger Cloud 的命令行界面,包含 MCP 服务器,可帮助 AI 助手管理 PostgreSQL 服务并执行查询。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
tiger-cli · 使用场景
- AI 助手通过 Tiger Cloud 管理 PostgreSQL 服务
- 开发人员通过 MCP 集成在远程数据库上执行 SQL 查询
- 使用 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 中安装。
tiger-cli · 安装
安装
使用以下方法之一安装 Tiger CLI:
脚本安装 (macOS/Linux/WSL)
curl -fsSL https://cli.tigerdata.com | shWindows
irm https://cli.tigerdata.com/install.ps1 | iexHomebrew (macOS/Linux)
brew install --cask timescale/tap/tiger-cliMCP 服务器设置
安装 Tiger CLI 后,进行身份验证并安装 MCP 服务器:
tiger auth login
tiger mcp installClaude Desktop 配置
将以下内容添加到 Claude Desktop 配置中:
{
"mcpServers": {
"tiger": {
"command": "tiger",
"args": [
"mcp",
"start"
]
}
}
}