mcp-3D-printer-server vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-3D-printer-server by DMontgomery40 | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 190 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具运维基建其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 本月 | 本月 |
mcp-3D-printer-server · 概述
连接主流3D打印机API的MCP服务器,支持打印控制、监控和STL操作。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
mcp-3D-printer-server · 使用场景
- 从单一界面监控和控制多个3D打印机
- 使用高级操作工具自动化STL文件准备
- 将3D打印工作流程集成到更大的自动化系统中
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
mcp-3D-printer-server · 安装
安装
前置要求
- Node.js 18或更高版本
- npm或yarn
从npm安装
npm install -g mcp-3d-printer-server从源码安装
git clone https://github.com/dmontgomery40/mcp-3d-printer-server.git
cd mcp-3d-printer-server
npm install
npm linkClaude Desktop配置
添加到您的Claude Desktop config.json中:
{
"mcpServers": {
"3d-printer": {
"command": "mcp-3d-printer-server",
"args": []
}
}
}使用Docker运行
docker-compose up --build -dsequentialthinking · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}