CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

build123d MCP

pzfreo/build123d-mcp
10STDIOregistry active
Summary

Gives Claude direct access to build123d's CAD operations so it can build, inspect, and iterate on 3D geometry instead of writing blind scripts. Execute code in a persistent session, render views as PNG or SVG, measure volume and clearance, export to STEP or STL, and load parts from bd_warehouse's fastener catalog. The workflow model is smart: use execute() for simple shapes, but for complex geometry with high face counts or threading, probe the API through the MCP then build in a standalone Python script and import the result to verify. Includes AST sandboxing and a restricted builtins layer so you can point it at LLM-generated code without immediately regretting it.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →

build123d-mcp

PyPI version Python CI License: Apache 2.0 build123d-mcp MCP server

Give your AI CAD eyes.

build123d-mcp is not a standalone chatbot or CAD program. It is a CAD toolbox that an AI/LLM app can use through MCP.

With an LLM app such as Claude, Cursor, VS Code, Continue, Cline, or Codex CLI, build123d-mcp lets the assistant create build123d CAD models, render previews, measure geometry, fix mistakes, and export files such as STEP, STL, SVG, and DXF. Instead of writing a whole CAD script blindly, the assistant can build a part in small steps and check the result as it goes.

On the public CADGenBench leaderboard in June 2026, using build123d-mcp raised the same model's score from 0.360 to 0.457 and CAD validity from 88% to 100%.

Pick Your Setup

Most users should start with the local MCP server setup:

  • You use Claude, Cursor, VS Code, Continue, Cline, or Codex CLI on your own machine.
  • Your AI app starts build123d-mcp as a local subprocess.
  • You do not need to clone this repository.

Use GitHub Codespaces instead if you want a browser-only trial or a ready-made development workspace with Copilot Chat, Python, uv, and the CAD dependencies already installed.

Use HTTP mode only for advanced deployments where you are hosting the MCP server yourself.

Quick Start

You need:

  • uv
  • An AI/LLM app that supports MCP, such as Claude Code, Claude Desktop, Cursor, VS Code, Continue, Cline, or Codex CLI

No repository clone is needed for normal use. First check that the package can start:

uv tool run --python 3.12 build123d-mcp@latest --version

Then add the same command to your AI app's MCP config. The common pieces are:

command: uv
args:    ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]

Python 3.11, 3.12, 3.13, and 3.14 are supported. The examples use 3.12 because it is a conservative default, and uv can download it if you do not already have it installed.

Connect To Your AI App

The pieces are:

  • The LLM app is where you chat with the assistant.
  • MCP is the connection that lets the assistant call tools.
  • build123d-mcp is the CAD tool server the assistant calls.

The server normally runs over stdio. Your AI app starts it as a local subprocess when it needs the CAD tools.

Claude Code

Add this to your project's .mcp.json, or to ~/.claude/mcp.json for global use:

{
  "mcpServers": {
    "build123d-mcp": {
      "command": "uv",
      "args": ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]
    }
  }
}

Restart Claude Code after editing.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or %APPDATA%\Claude\claude_desktop_config.json on Windows:

{
  "mcpServers": {
    "build123d-mcp": {
      "command": "uv",
      "args": ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]
    }
  }
}

Restart Claude Desktop after saving.

Cursor

Open Settings -> MCP and add a new server entry, or edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "build123d-mcp": {
      "command": "uv",
      "args": ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]
    }
  }
}

VS Code, Continue, Cline, Codex CLI

Use the same command and arguments in whichever MCP config your AI app or extension reads. The exact filename varies by app, but the server command is the same:

command: uv
args:    ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]

For GitHub Copilot MCP support in VS Code, this repository includes a .vscode/mcp.json for development checkouts and Codespaces. For another workspace, the config looks like this:

{
  "servers": {
    "build123d-mcp": {
      "type": "stdio",
      "command": "uv",
      "args": ["tool", "run", "--python", "3.12", "build123d-mcp@latest"]
    }
  }
}

First Test Prompt

Once your AI app is connected to the server, ask your assistant something concrete:

Use build123d-mcp to make a 60 mm x 40 mm x 6 mm mounting plate with two
5 mm through holes 40 mm apart. Render it, measure it, then export STEP and STL.

The useful loop is:

  1. Build one feature at a time.
  2. Render or measure after important steps.
  3. Validate before export.
  4. Export the final part.

If something goes wrong, ask the assistant to inspect last_error, repair the script, and try the next smaller step.

Good prompts usually ask the assistant to use the MCP tools explicitly and to verify the result before exporting. For example:

Use build123d-mcp. Build this incrementally, render after the main features,
measure the final dimensions, run validate(), and export STEP if it passes.

Try It In GitHub Codespaces With Copilot

You can also run the project in a browser with GitHub Codespaces:

Open in GitHub Codespaces

For a beginner, this is the closest path to "GitHub-hosted LLM + MCP":

  • GitHub Codespaces gives you VS Code in the browser.
  • GitHub Copilot Chat gives you the LLM assistant.
  • build123d-mcp runs inside the codespace as the MCP CAD tool server.

You need GitHub Copilot access for the LLM part. The codespace itself gives you a throwaway workspace with the project already checked out and the right Python/CAD dependencies installed. It is useful when you want to:

  • Try the project without changing your laptop setup
  • Run the tests before making a contribution
  • Use Copilot Chat and build123d-mcp together in the same browser workspace

GitHub's docs cover:

  • Using Copilot in Codespaces
  • Extending Copilot Chat with MCP

This repository includes a dev container that installs Python 3.12, uv, and the Linux display packages needed for headless rendering. It also installs the GitHub Copilot VS Code extensions and includes a workspace MCP config at .vscode/mcp.json.

When the codespace opens, it runs:

uv sync --all-groups

To check the development install:

uv run build123d-mcp --version
uv run pytest

To use Copilot with the local CAD server:

  1. Open the codespace.
  2. Wait for setup to finish.
  3. Open Copilot Chat and choose Agent mode.
  4. Open .vscode/mcp.json and start the build123d-mcp server if VS Code has not started it already.
  5. Ask the first test prompt from the previous section.

The Codespaces MCP config points at the local checkout rather than the PyPI package:

{
  "servers": {
    "build123d-mcp": {
      "type": "stdio",
      "command": "uv",
      "args": ["run", "build123d-mcp"]
    }
  }
}

Codespaces is a good fit for trying the project, contributing, or using GitHub Copilot and build123d-mcp in one remote environment. For desktop AI apps on your own machine, the normal uv tool run ... build123d-mcp@latest setup is simpler because those apps expect to start the MCP server locally.

What It Can Do

build123d-mcp gives an assistant tools to:

  • Execute build123d code in a persistent CAD session
  • Render PNG, SVG, and DXF previews
  • Measure volume, area, bounding boxes, topology, and centers of mass
  • Find holes, bosses, countersinks, and hole patterns
  • Check printability, fit/alignment comparisons, and export validity
  • Import STEP/STL files for comparison
  • Export STEP, STL, DXF, SVG, or multiple formats at once
  • Save and restore session snapshots
  • Produce 2D engineering drawing previews

For the complete tool and resource reference, see llms.md.

Guidance For Assistants

The server includes workflow guidance that helps assistants use the CAD loop properly. This is especially useful in coding agents that read project guidance files.

After connecting the server, ask your assistant to call install_skill for the workflow you need:

install_skill(target="agents-md", skill="modeling")
install_skill(target="agents-md", skill="drawing")
install_skill(target="agents-md", skill="repair")

install_skill also supports target="claude", "cursor", and "windsurf". Use skill="modeling" for 3D parts, skill="drawing" for engineering drawings, and skill="repair" when a solid fails validation.

You can also paste default_prompt.md into your AI app as a system prompt.

Developer Setup

For local development:

git clone https://github.com/pzfreo/build123d-mcp.git
cd build123d-mcp
uv sync --all-groups
uv run build123d-mcp --version
uv run pytest

To run the server from this checkout in an AI app, use:

command: uv
args:    ["run", "build123d-mcp"]

See CONTRIBUTING.md for contribution guidelines.

Advanced Use

The default stdio transport gives each app process its own isolated session. HTTP mode is available for web, container, or remote deployments:

uv tool run --python 3.12 "build123d-mcp[http]@latest" \
  --transport http --host 127.0.0.1 --port 8000

HTTP-capable apps then connect to:

http://localhost:8000/mcp

HTTP mode has no built-in authentication and uses one shared CAD session unless the host provides per-request session middleware. Do not expose it to multiple users directly.

Other advanced topics:

  • Security model and sandboxing: security.md
  • Complete tool reference: llms.md
  • Live session viewer: docs/live-viewer.md
  • Changelog: CHANGELOG.md

Status

Active development.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Categories
Design & Creative
Registryactive
Packagebuild123d-mcp
TransportSTDIO
UpdatedJun 10, 2026
View on GitHub

Related Design & Creative MCP Servers

View all →
HTML to Figma — Design System

miapre/html-to-figma-design-system

Translate HTML prototypes into Figma using your design system's real components and tokens.
3
Illustrator Mcp Server

ie3jp/illustrator-mcp-server

Read, manipulate, and export Adobe Illustrator design data. 26 tools. macOS | Windows.
44
Godot

coding-solo/godot-mcp

MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.
3.7k
Unity Mcp

ivanmurzak/unity-mcp

Make 3D games in Unity Engine with AI. MCP Server + Plugin for Unity Editor and Unity games.
3.1k
Excalidraw

yctimlin/mcp_excalidraw

Provides an Excalidraw canvas exposed via MCP for real-time diagramming and element CRUD from AI agents.
1.9k
Figma MCP Server

figma/mcp-server-guide

The Figma MCP server brings Figma design context directly into your AI workflow.
1.6k