melrose vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
melrose by emicklei | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 208 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
melrose · 概述
Melrōse 是一个交互式编程工具,用于创建旋律,通过 MCP 提供音乐创作功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
melrose · 使用场景
- 通过编程创作旋律
- 实时修改进行现场音乐表演
- 通过代码创建 MIDI 音轨
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
melrose · 安装
按照[构建说明](docs/install.md)安装 Melrōse 工具。有关 Melrōse MCP 服务器的具体安装和使用,请参阅 [melrose-mcp](https://github.com/emicklei/melrose-mcp)。要在 Claude Desktop 中使用,请将以下内容添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"melrose": {
"command": "melrose-mcp",
"args": []
}
}
}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 中安装。