MCP CAD Studio
MCP CAD Studio is a parametric 3D CAD workspace providing tools to create, edit, visualize, and export CAD models, with an optional interactive 3D studio UI. It runs over stdio or HTTP, using a bundled WebAssembly kernel (no external dependencies), and supports revision-based concurrency.
Key capabilities:
Open Studio UI: Launch an interactive 3D editor for visual model manipulation, synced in real time with server state.
Model Management: List, load, create, duplicate, delete models, with full revision history.
Parametric Shape Creation: Build models from primitives (box, sphere, cylinder, cone), polygon extrusions (with twist/scale), raw meshes, and boolean operations (union, difference, intersection). Use built-in templates for brackets, pipes, gears, enclosures, bolts.
Model Editing: Update names, colors, or shape definitions via full replacement or JSON Patches; apply incremental transformations (translate, rotate, scale); combine multiple models via boolean operations.
Import/Export: Import ASCII/binary STL and OBJ (text or base64); export as ASCII STL/OBJ.
Validation: Preflight shapes to diagnose topology issues (self-intersections, open boundaries, etc.) without saving.
UI Integration: UI synchronizes with tool calls; all operations work independently of the UI.
Deployment & Persistence: Persists models to disk or in-memory; supports concurrent editing with optimistic revision checks; runs on Node.js with a WebAssembly kernel.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP CAD StudioCreate a gear with 24 teeth and 8mm bore"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP CAD Studio
A self-contained parametric CAD workspace delivered as an MCP server and an interactive MCP App. Agents can create and edit models through tools; people can work on the same models in a live 3D studio rendered inside any compatible host.
What it does
Renders a full 3D editor through the
studio_uitool.Creates boxes, spheres, cylinders, cones, polygon extrusions, imported meshes, transforms, and nested union/difference/intersection trees.
Generates editable brackets, pipes, gears, enclosures, and bolts.
Loads, patches, regenerates, and deletes persistent model documents with optimistic revision checks.
Preflights extrusion outlines and raw meshes with actionable topology diagnostics before they reach the CAD kernel.
Imports ASCII/binary STL and OBJ; exports ASCII STL and OBJ.
Keeps an open app synchronized with model-initiated MCP tool calls.
Runs over stdio or Streamable HTTP, with direct HTTPS support.
Uses a bundled WebAssembly CAD kernel—no OpenSCAD, Python, compiler, Docker, or native CAD installation is needed.
The server's data tools are UI-independent. A client that cannot render MCP Apps can still perform every CAD operation and receive structured model/mesh data.
Related MCP server: 3D Agent MCP
Install
Node.js 20 or later is the only runtime requirement. The CAD engine and all JavaScript dependencies install with the package.
Run the published npm package:
npx -y mcp-cad-studio --stdioOr clone and build:
git clone https://github.com/flujo-app/mcp-cad-studio.git
cd mcp-cad-studio
npm install
npm run build
npm start -- --stdioMCP client configuration (stdio)
{
"mcpServers": {
"cad-studio": {
"command": "npx",
"args": ["-y", "mcp-cad-studio", "--stdio"]
}
}
}Models persist by default to ~/.mcp-cad-studio/models.json. Use
--data-file <path> to choose another file or --no-persist for an in-memory
session.
HTTPS / Streamable HTTP
Run a local HTTPS endpoint with a generated self-signed certificate:
mcp-cad-studio --transport https --host 127.0.0.1 --port 8787For a remotely reachable production server, use a trusted certificate:
mcp-cad-studio --transport https \
--host 0.0.0.0 \
--port 8787 \
--tls-cert /run/secrets/fullchain.pem \
--tls-key /run/secrets/privkey.pemThe MCP endpoint is /mcp; a read-only health endpoint is available at
/health. TLS termination at a reverse proxy is also supported—run with
--transport http behind the proxy.
MCP tools
Tool | Purpose |
| Open the interactive MCP App and optionally select a model |
| List saved models and revisions |
| Load the parametric document and its render mesh |
| Create a model from a declarative shape tree |
| Create a template model, or regenerate one in place by |
| Patch or replace a model's definition, name, or color in place |
| Preflight a shape without saving it |
| Apply an incremental translation, rotation, or scale |
| Union, subtract, or intersect saved models into a new model |
| Make an editable copy |
| Permanently delete a model |
| Import STL/OBJ text or base64 data |
| Export ASCII STL/OBJ data |
All mutating results include models, activeModel, and mesh in
structuredContent, so the UI and model see the same canonical state. Model
creation is reserved for genuinely separate models. For revisions, first call
load_model, then pass its modelId and revision back as
expectedRevision to update_model, generate_model, or delete_model.
Updating without creating copies
update_model preserves the model ID and supports either a complete replacement
shape or small RFC 6901 JSON-Pointer-style patches. This changes the X size of
a saved box without resending its whole definition:
{
"modelId": "5e44fd24-b7df-450a-a7bb-31c95496832f",
"expectedRevision": 3,
"patches": [
{ "op": "replace", "path": "/shape/size/0", "value": 80 }
]
}Patches can target /shape, /name, or /color and are applied in order.
add, replace, and remove are supported. The completed definition is
schema-checked and geometry-checked before the saved model is changed.
For template-level edits, such as changing a gear's tooth count, call
generate_model with the existing modelId and expectedRevision. The
template is regenerated into the same document instead of creating another
model.
Parametric model format
create_model and update_model accept a recursive shape tree. For example, a
plate with a cylindrical hole:
{
"name": "Mounting plate",
"color": "#60a5fa",
"shape": {
"kind": "difference",
"children": [
{ "kind": "box", "size": [80, 50, 6], "center": true },
{
"kind": "cylinder",
"height": 8,
"radius": 5,
"segments": 48,
"center": true
}
]
}
}Every node can include a transform:
{
"transform": {
"translation": [10, 0, 4],
"rotation": [0, 0, 45],
"scale": [1, 1, 1]
}
}Rotations use degrees. Dimensions are unit-agnostic in the kernel; the studio labels them as millimeters.
Shape objects are strict: misspelled or unsupported fields produce an error
instead of being silently ignored. validate_shape checks a draft without
saving and reports JSON paths, error codes, and suggested repairs. Checks
include:
repeated, zero-length, zero-area, and self-intersecting extrusion outlines;
incomplete or out-of-range mesh arrays and degenerate triangles;
open boundaries, edges shared by too many faces, inconsistent winding, and disconnected surface fans at a vertex;
shape-tree and twisted-extrusion complexity limits;
final verification by the Manifold CAD kernel.
If the kernel still rejects a shape, its status is translated into guidance for non-finite vertices, non-manifold geometry, invalid construction, oversized results, and the other kernel status classes.
Architecture
flowchart LR
A[Agent or person] --> H[MCP host]
H <-->|stdio or Streamable HTTP/S| S[MCP CAD Studio server]
H <-->|MCP Apps JSON-RPC bridge| U[Interactive CAD app]
U -->|tools/call| H
S --> P[Persistent parametric documents]
S --> K[Bundled Manifold WebAssembly kernel]
K --> M[Render mesh and STL/OBJ]
M --> SThe studio_ui tool links to ui://cad-studio/studio.html with
_meta.ui.resourceUri. The component uses the stable MCP Apps bridge
(ui/initialize, ui/notifications/*, and tools/call) rather than requiring
host-specific globals. Model polling is revision-aware, making external tool
edits visible in an already-open editor.
Development
npm install
npm run checknpm run check performs strict TypeScript checking, 16 kernel/store/protocol/
transport tests, and a production build. The test suite uses the real
WebAssembly geometry engine and both in-memory and Streamable HTTP MCP clients.
Useful commands:
npm run dev # HTTP development server on port 8787
npm test # Vitest suite
npm run typecheck # TypeScript only
npm run build # bundle the MCP App and server
npm pack # verify the single-package artifactTo publish the current version to npm:
npm run releaseThe release command signs in through npm when necessary, runs the complete check suite, publishes the package publicly, and confirms that npm serves the version. It is safe to rerun: if that exact version is already published, it verifies the project and skips the duplicate publish.
Run npm run release:check to validate the release helper without publishing.
Security notes
Tool schemas cap shape depth, node count, mesh size, and imported file size.
Mutation tools accurately declare read-only/destructive/open-world hints.
expectedRevisionprevents accidental overwrites and stale deletion during concurrent editing.Patch paths are restricted to editable model fields and reject prototype traversal.
The app resource declares an empty external-resource/connect CSP.
A generated self-signed certificate is intended for local development only.
Authentication is deployment-specific. Put remote multi-user instances behind an authenticated gateway and enforce per-user authorization there.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that lets AI assistants create, edit, render, and export 3D models using OpenSCAD.Last updated2
- Alicense-qualityAmaintenanceMCP server for generating print-ready 3D models from text descriptions via a multi-agent pipeline, enabling AI assistants to create and optimize STL files.Last updated1MIT
- AlicenseBqualityBmaintenanceAn MCP server for parametric part modeling in Onshape, producing fully-defined, variable-driven sketches and features. It enables LLMs to create editable CAD models using semantic selection and geometrically grounded constraints.Last updated33MIT
- Alicense-qualityBmaintenanceA local MCP server that enables AI agents to create and edit parametric CAD models through natural language, using a validated operation graph that compiles to real geometry.Last updated1MIT
Related MCP Connectors
Agent-first CAD: editable .kcad.ts source, deterministic review, OpenCASCADE kernel.
Educational MCP server with 17 math/stats tools, visualizations, and persistent workspace
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/flujo-app/mcp-cad-studio'
If you have feedback or need assistance with the MCP directory API, please join our Discord server