经 AI Skill Hub 精选评估,Build123d MCP服务器 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
为build123d 3D CAD建模工具提供MCP服务器支持,增强AI在创建3D模型时的认知能力。适合需要集成AI辅助的CAD设计师、3D建模爱好者和开发者,通过MCP协议实现AI与CAD工具的无缝协作。
Build123d MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
为build123d 3D CAD建模工具提供MCP服务器支持,增强AI在创建3D模型时的认知能力。适合需要集成AI辅助的CAD设计师、3D建模爱好者和开发者,通过MCP协议实现AI与CAD工具的无缝协作。
Build123d MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/pzfreo/build123d-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"build123d-mcp---": {
"command": "npx",
"args": ["-y", "build123d-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Build123d MCP服务器 执行以下任务... Claude: [自动调用 Build123d MCP服务器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"build123d_mcp___": {
"command": "npx",
"args": ["-y", "build123d-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
All Python dependencies (build123d, vtk, etc.) are installed automatically by uv.
An MCP (Model Context Protocol) server that exposes build123d CAD operations as tools, enabling AI assistants to build, inspect, and iterate on 3D geometry interactively.
No clone needed. Install directly from PyPI:
pip install build123d-mcp
Or just use uv tool run — it fetches and runs the package in one step with no prior install required (see below).
---
Build complexity falls into two tiers and the right approach differs between them.
Simple shapes (a few primitives, up to ~5 booleans): build entirely in execute().
Complex shapes (IsoThread, multi-body fillets, high face counts): the execute() timeout (default 120 s) is a hard ceiling. The efficient pattern is:
1. Probe in the MCP — small execute() calls to discover API signatures, size strings, and face counts. Use dir() and import inspect; inspect.signature(ClassName) freely. 2. Build in a Python script — run it with Bash (or your shell). No timeout, full Python. 3. Import and verify in the MCP:
import_cad_file("/path/to/part.step", "part")
measure("part") # verify volume, topology, bounding box
render_view(objects="part") # visualise
Timeout note: the default is 120 s. Raise it with--exec-timeout NorBUILD123D_EXEC_TIMEOUT=N. When a timeout fires, all session state is lost (worker is restarted) — you must re-run any setup code.
Sandboxed-host note: if everyexecute()fails with "Worker process failed to start", your MCP host is likely blocking subprocess creation (seen with sandboxed hosts on Windows). Relaunch with--in-processorBUILD123D_IN_PROCESS=1— a degraded mode that runs the CAD session inside the server process: no crash containment, no operation timeouts.
Import note: afterimport_cad_file()the shape is a named session object. Always render it by name (objects="part") when other shapes from the same build are also in session — two co-located shapes cause Z-fighting (striped colour artifacts). STL imports produce a shell (volume = 0);render_viewandmeasurework, butclearance()and boolean operations require a solid.
For Continue extension, add to .continue/config.json:
{
"mcpServers": [
{
"name": "build123d-mcp",
"command": "uv",
"args": ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]
}
]
}
For GitHub Copilot with MCP support, add to .vscode/mcp.json in your workspace:
{
"servers": {
"build123d-mcp": {
"type": "stdio",
"command": "uv",
"args": ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]
}
}
}
---
创新的MCP服务器实现,填补AI与CAD工具集成的空白。代码质量有待验证,适合早期采用者和开发者探索。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:Build123d MCP服务器 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | build123d-mcp |
| 原始描述 | 开源MCP工具:MCP server for build123d to improve AI cognition when creating 3D CAD models。⭐9 · Python |
| Topics | MCP服务器3D建模CAD工具AI集成Python |
| GitHub | https://github.com/pzfreo/build123d-mcp |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-10 · 更新时间:2026-06-11 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端