mcp-arr vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-arr by aplaceforallmystuff | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 137 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体效率工具AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
mcp-arr · 概述
MCP 服务器,用于统一管理 *arr 媒体套件,包括 Sonarr、Radarr、Lidarr 和 Prowlarr。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-arr · 使用场景
- 使用自然语言查询检查所有 *arr 应用程序的库状态
- 从统一界面搜索并添加内容到任何 *arr 服务
- 监控电视、电影和音乐的下载进度和即将发布的作品
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-arr · 安装
安装
**使用 npm(推荐)**
npx mcp-arr-server**远程 HTTP 模式**
MCP_TRANSPORT=http PORT=3000 npx mcp-arr-server**Claude Desktop 配置** 添加到您的 Claude Desktop 配置文件:
{
"mcpServers": {
"arr": {
"command": "npx",
"args": ["-y", "mcp-arr-server"],
"env": {
"SONARR_URL": "http://localhost:8989",
"SONARR_API_KEY": "your-sonarr-api-key",
"RADARR_URL": "http://localhost:7878",
"RADARR_API_KEY": "your-radarr-api-key",
"LIDARR_URL": "http://localhost:8686",
"LIDARR_API_KEY": "your-lidarr-api-key",
"PROWLARR_URL": "http://localhost:9696",
"PROWLARR_API_KEY": "your-prowlarr-api-key"
}
}
}
}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 中安装。