bambu-printer-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
bambu-printer-mcp by DMontgomery40 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 本地文件系统开发者工具效率工具 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 本月 | 本月 |
bambu-printer-mcp · 概述
专用于Bambu Lab 3D打印机的MCP服务器,提供STL操作、切片和直接控制功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
bambu-printer-mcp · 使用场景
- 通过Claude Desktop自动化准备并发送打印作业到Bambu Lab打印机
- 通过MCP兼容客户端远程监控打印机状态和AMS物料库存
- 通过Claude Code远程控制打印机功能如暂停/恢复和调整打印参数
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
bambu-printer-mcp · 安装
安装
先决条件
- Node.js 18或更高版本
- npm
- BambuStudio(可选,仅用于切片)
不安装直接运行(npx)
npx @rowbotik/bambu-printer-mcp从npm全局安装
npm install -g @rowbotik/bambu-printer-mcp从源码安装
git clone https://github.com/DMontgomery40/bambu-printer-mcp.git
cd bambu-printer-mcp
npm install
npm run build
npm run startClaude Desktop配置
添加到你的Claude Desktop config.json中:
{
"mcpServers": {
"bambu-printer": {
"command": "npx",
"args": ["@rowbotik/bambu-printer-mcp"],
"env": {
"BAMBU_PRINTER_HOST": "your-printer.local",
"BAMBU_PRINTER_TOKEN": "your-access-token"
}
}
}
}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 中安装。