sketchup-mcp2
The sketchup-mcp2 server connects AI clients (like Claude) to a live SketchUp session, enabling prompt-driven 3D modeling through the following capabilities:
Geometry Creation & Manipulation
Create 3D primitives (cubes, cylinders, cones, spheres) at specified positions and dimensions (in mm)
Delete components by entity ID
Move, rotate, or scale components in 3D space
Materials
Apply named colors or hex
#rrggbbvalues to components
Boolean Operations
Union, difference, or intersection between two solid components
Edge Operations
Chamfer (bevel) and fillet (round) edges with configurable distance/radius
Woodworking Joinery
Mortise & tenon, dovetail, and finger/box joints with configurable dimensions
Scene Export
Export in SKP, OBJ, DAE, STL, PNG, or JPG formats
Model Introspection
Query model info (file path, title, units, bounding box, entity count)
List, find, and get details on components by name, type, or layer
Manage layers (list, create) and retrieve the current selection
Visual Feedback
Capture viewport screenshots (SketchUp 2026+) with configurable view presets, rendering styles, zoom extents, and resolution
History & Escape Hatch
Undo the last atomic operation
Execute arbitrary Ruby code inside SketchUp for full API access (disabled by default in the warehouse build for security)
Other
Version handshake for Python↔Ruby compatibility checks
Supports multiple concurrent MCP clients with serialized operations
All dimensions in millimeters, angles in degrees
Provides tools for creating, modifying, and manipulating 3D models in SketchUp, including component management, boolean operations, joinery, and scene export.
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., "@sketchup-mcp2Create a 3D cube and color it blue"
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 Server for SketchUp
Connect Claude (or any MCP-aware AI client) to SketchUp for prompt-driven 3D modeling.
Two-process bridge:
Python MCP server (
sketchup-mcp2on PyPI) — exposes typed tools to the LLM via the Model Context Protocol.Ruby SketchUp extension — runs a TCP server inside SketchUp and executes commands against the live model.
Distribution variants
This extension ships in two .rbz builds from the same source — they differ in one bit, the default state of eval_ruby:
Variant | Where to get it |
| Audience |
Warehouse | SketchUp Extension Warehouse | off (must enable in Settings) | Trimble-vetted, general SketchUp users |
GitHub | This repo's Releases page | on | Developers / MCP-aware users who know what |
If you installed from the warehouse and your MCP client tries eval_ruby, the call returns a message like:
eval_ruby is disabled. Open Plugins → MCP Server → Settings... and check 'Enable Ruby evaluation'. WARNING: this grants the MCP server arbitrary code execution including filesystem and shell access.
That's intentional — enable it once via Settings if you trust the connected MCP client. The setting persists across SketchUp restarts. Turning it on pops a blocking confirmation spelling out the risk (arbitrary Ruby ⇒ full filesystem / network / shell access).
Per-call review. Even with eval_ruby enabled, the exact Ruby a client sends stays visible in your MCP client — Claude Desktop and Claude Code display every tool call's arguments and let you approve or deny each one before it runs, so you can review each snippet case by case. (That per-call prompt is skipped only if you opt out of approvals, e.g. Claude Code's --dangerously-skip-permissions.)
Related MCP server: SketchupMCP
Quickstart
1. Install the SketchUp extension
Either grab the latest .rbz from GitHub Releases (or the Extension Warehouse) or build it from source. The build accepts --variant=warehouse|github (default: warehouse); see Distribution variants:
gem install --user-install rubyzip
(cd mcp_for_sketchup && ruby package.rb --variant=warehouse)
# → mcp_for_sketchup/mcp_for_sketchup_v<version>-warehouse.rbz
# For the dev/power-user build with eval_ruby on by default:
(cd mcp_for_sketchup && ruby package.rb --variant=github)
# → mcp_for_sketchup/mcp_for_sketchup_v<version>-github.rbzIn SketchUp: Window → Extension Manager → Install Extension, pick the .rbz, restart SketchUp.
2. Start the server inside SketchUp
Plugins → MCP Server → Start — by default listens on 127.0.0.1:9876.
3. Configure your MCP client
For Claude Code / Claude Desktop, add to .mcp.json (or claude_desktop_config.json):
{
"mcpServers": {
"sketchup": {
"command": "uvx",
"args": ["sketchup-mcp2"],
"env": {
"SKETCHUP_MCP_HOST": "127.0.0.1",
"SKETCHUP_MCP_PORT": "9876",
"SKETCHUP_MCP_TIMEOUT": "60",
"SKETCHUP_MCP_LOG_LEVEL": "INFO"
}
}
}
}uvx will pull sketchup-mcp2 from PyPI automatically — install uv if you don't have it.
That's it. Ask Claude things like "create a 1.2 × 0.8 m oak dining table" and watch it happen.
Features
Tool catalogue
Category | Tools |
Geometry |
|
Materials |
|
Booleans |
|
Edge ops |
|
Joinery |
|
Export |
|
Introspection |
|
View |
|
Lifecycle |
|
Escape hatch |
|
All dimensions in millimeters; angles in degrees. Every entity-returning handler also responds with bbox_mm so the LLM can re-locate entities by bounding box if their IDs go stale after destructive ops.
Capabilities
Multi-client support — N concurrent MCP clients can be connected at once (e.g. Claude Desktop + a smoke-test script + your own Python notebook). Operations are still serialised on the SketchUp UI thread; frames are dispatched in a single global FIFO ordered by decode arrival.
One-time version handshake — every TCP connection begins with a JSON-RPC
hellocarryingclient_version; the server validates against its supported range and replies withserver_version+client_id. Incompatible pairs surface immediately asIncompatibleVersionErrorand the socket is closed.Atomic undo — every mutating handler wraps the edit in
model.start_operation/commit_operation, so a singleEdit → Undorolls back the whole call.MCP prompt
sketchup_modeling_strategy— surfaced in MCP-aware clients' slash menu; teaches the model project conventions (mm units, typed-tools-vs-eval_ruby, pitfalls like reversedGroup#subtract).Settings dialog —
Plugins → MCP Server → Settings...for host / port / log level. Log level applies immediately; host/port changes prompt for a restart.
Configuration
Python side (env vars in .mcp.json)
Variable | Default | Description |
|
| Where to connect to the SketchUp extension |
|
| TCP port |
|
| Per-tool-call timeout (seconds) |
|
|
|
Ruby side (Settings dialog inside SketchUp)
Open Plugins → MCP Server → Settings... to change Host, Port, Log Level, the Ruby evaluation gate, and log-to-file options. Values persist in SketchUp's preferences under section MCPforSketchUp. No environment variables are read on the Ruby side.
The Ruby side logs at WARN by default, so it stays quiet in SketchUp's shared Ruby console; any line it does print is prefixed [MCPforSU] with a UTC timestamp. Enable Log to file to mirror every line to a UTF-8 log file in addition to the console (Plugins → MCP Server → Show Log opens it). The file is written append-only — there is no automatic rotation or size cap, so rotate or clean it up yourself for long-lived sessions.
⚠ Security warning: binding the host to
0.0.0.0exposes the MCP server — includingeval_ruby, which runs arbitrary Ruby inside SketchUp — to the entire local network with no authentication. Use only on trusted networks (host → VM, isolated lab). For multi-machine setups consider a loopback SSH tunnel instead.
Examples
Things you can ask Claude:
"Create a simple dining table — 1.2 × 0.8 m, 760 mm tall, oak finish"
"Highlight every component smaller than 100 mm in any dimension"
"Make the selected component red, then move it 100 mm up"
"Export the scene as STL for 3D printing"
"Build a small arts-and-crafts cabinet using
eval_rubywith dovetails"
For richer Ruby recipes that drive the SketchUp API directly — framed walls, gable/hip roofs, joist arrays, follow_me extrusions, world-space transforms, common pitfalls — see docs/sketchup-ruby-cookbook.md.
Working examples and load tests live in examples/:
smoke_check.py— 22-step end-to-end verification of every tool category.smoke_multi_client.py— concurrent multi-client load test.arts_and_crafts_cabinet.py— a non-trivial generative model viaeval_ruby.simple_test.py,simple_ruby_eval.py,behavior_tester.py— minimal scaffolds.
Architecture
Claude (MCP client)
↕ MCP (stdio)
Python MCP server (FastMCP) src/sketchup_mcp/
↕ TCP — JSON-RPC 2.0, 4-byte big-endian length-prefix framing, 64 MiB cap
Ruby SketchUp extension (server) mcp_for_sketchup/mcp_for_sketchup/
↕ SketchUp Ruby API
Live SketchUp modelThe Ruby side runs entirely on the SketchUp UI thread via UI.start_timer callbacks (SketchUp's Ruby is single-threaded — no native threads allowed). The Python side holds one persistent TCP socket per process and serialises tool-calls with an asyncio.Lock.
Source layout:
Python:
src/sketchup_mcp/{tools,connection,config,compat,errors,prompts}.pyRuby:
mcp_for_sketchup/mcp_for_sketchup/{core,handlers,helpers,ui}/
See CLAUDE.md for the project's working notes and non-obvious constraints (unit conversions, reversed boolean semantics, framing details, etc.).
Development
Python package (editable install)
uv pip install -e .
python -m sketchup_mcp # direct
uvx sketchup-mcp2 # production-style (from PyPI)Tests
ruby test/run_all.rb # Ruby unit tests (minitest, stdlib only)
uv run pytest tests/ -q # Python unit testsLive smoke (requires SketchUp running with the extension started)
uv run python examples/smoke_check.py # 22-step end-to-end
uv run python examples/smoke_multi_client.py # concurrent multi-clientFor a split-host setup (e.g. Linux dev box + Windows SketchUp), prefix with SKETCHUP_MCP_HOST=<sketchup-host>.
Troubleshooting
SketchUp not running or extension not started: ...
The Python MCP server connected to the configured host/port but found nothing listening. Either:
SketchUp isn't running, or
The extension is installed but not started — open
Plugins → MCP Server → Start.
The Python server stays alive after this error; the next tool-call retries the connect.
IncompatibleVersionError
Your installed sketchup-mcp2 Python package and the .rbz extension are outside the supported version range. Rebuild the .rbz from the same commit as the Python package, or pip install -U sketchup-mcp2. The current supported range lives in src/sketchup_mcp/compat.py and mcp_for_sketchup/mcp_for_sketchup/core/compat.rb.
Tool-call timeouts on long operations
Bump SKETCHUP_MCP_TIMEOUT in your .mcp.json env block. Default is 60 seconds.
SketchUp UI freezes during big requests
Frame-decoding is capped at 50 reads × 64 KiB per client per tick (~3.2 MB) to keep the UI responsive, but a very large eval_ruby body or a runaway loop inside it will still freeze SketchUp until it returns. Break the work into smaller calls if you can.
MCP client reports connection timed out after 30000ms at startup
If the client can't connect but SketchUp itself is reachable (e.g. telnet <host> 9876 succeeds), the bottleneck is the Python server's own startup, not the link to SketchUp.
The usual culprit is running the server from a source checkout whose virtual environment lives on a slow filesystem — VMware Shared Folders (vmhgfs-fuse), VirtualBox shared folders, NFS/CIFS network drives, or WSL's /mnt/.... Python touches hundreds of small files at startup, and importing the FastMCP dependency stack from such a filesystem can take 30 s+ — past the client's init timeout. (A quick check: time uv run python -c "import sketchup_mcp.app" — if that takes tens of seconds, the filesystem is the problem.)
Keep the virtualenv on a local disk. With uv, point it there via UV_PROJECT_ENVIRONMENT in the server's .mcp.json env block — the project source can stay on the shared folder (it's small, and editable installs pick up changes live); only the dependency-heavy venv needs to be local:
"sketchup": {
"command": "uv",
"args": ["run", "--directory", "/path/to/sketchup-mcp2", "python", "-m", "sketchup_mcp"],
"env": {
"UV_PROJECT_ENVIRONMENT": "/home/you/.venvs/sketchup-mcp2",
"SKETCHUP_MCP_HOST": "127.0.0.1"
}
}The uvx sketchup-mcp2 setup shown earlier isn't affected — uvx already keeps its environment under uv's local cache.
Why is the venv on a shared folder at all? This bridge is typically run in an isolated VM setup — both Claude Code launched with
--dangerously-skip-permissionsandeval_ruby(arbitrary Ruby, full filesystem/shell access) enabled are risky enough to want a disposable VM. Typical layout: a Linux VM (Claude Code + MCP server) ↔ a Windows VM (SketchUp) over the LAN, project on a host-shared folder — which is exactly why theUV_PROJECT_ENVIRONMENTnote above matters.
License
MIT — see LICENSE.
Credits and attribution
Originally forked from mhyrr/sketchup-mcp. The fork diverged at v0.0.1 with a new wire protocol (4-byte length-prefix framing, JSON-RPC 2.0 envelopes), modular handler architecture, expanded introspection / joinery / edge-op tools, multi-client server with one-time
hellohandshake, MCP prompt, viewport screenshot, settings dialog, and full unit-test coverage on both Ruby and Python sides.Published to PyPI as
sketchup-mcp2; the upstream package issketchup-mcp.Bridge-pattern inspiration from ahujasid/blender-mcp.
Contributing
Pull requests welcome. Before opening one, please run both test suites (ruby test/run_all.rb and uv run pytest tests/) and — if you've touched anything in the IO path — the live smokes against a running SketchUp.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/zinin/sketchup-mcp2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server