SketchUp MCP Server
The SketchUp MCP Server allows AI assistants to programmatically create and manipulate 3D models in SketchUp through a rich set of tools and access to construction knowledge resources.
Query & Inspection: Retrieve model metadata, list layers (tags), materials, entities (faces, edges, groups, component instances), and component definitions.
Geometry Creation: Create faces, edges, groups, boxes, circles, arcs, and regular polygons.
Geometry Operations: Perform push/pull and follow-me extrusions on faces.
Transformations: Move, rotate, and scale entities (uniformly or non-uniformly).
Components: Create new component definitions and place instances; place existing components.
Specialized Construction: Generate engineered roof trusses (king post or fink/W-truss types) with configurable span, pitch, overhang, count, spacing, and lumber size.
Advanced: Execute arbitrary Ruby code directly inside SketchUp for full access to the SketchUp Ruby API.
Knowledge Resources: Access construction design guides and standards for elements like roof trusses, framing, and stairs.
Provides tools for creating and manipulating 3D models in SketchUp, including geometry creation (boxes, circles, arcs, polygons), extrusion (push-pull, follow me), transformations (move, rotate, scale), component management, and advanced operations like executing Ruby code.
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 MCP ServerCreate a 3x3x2.5 meter room."
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.
SketchUp MCP Server
Controla SketchUp con IA. Servidor MCP (Model Context Protocol) que permite a asistentes de IA como Claude, Cursor y Gemini crear modelos 3D en SketchUp de forma programática.
Cómo Funciona
┌──────────────┐ MCP (stdio) ┌──────────────┐ HTTP :8080 ┌──────────────┐
│ AI Client │ ◄──────────────────► │ Python MCP │ ◄────────────────► │ SketchUp │
│ (Claude, │ │ Server │ │ Ruby Plugin │
│ Cursor, │ │ │ │ │
│ Gemini) │ │ src/ │ │ sketchup_ │
│ │ │ sketchup_mcp/│ │ plugin/ │
└──────────────┘ └──────────────┘ └──────────────┘El sistema tiene dos componentes:
Plugin Ruby (
sketchup_plugin/sketchup_mcp_server.rb) — Se ejecuta dentro de SketchUp, expone una API HTTP enlocalhost:8080que controla la API Ruby de SketchUpServidor MCP en Python (
src/sketchup_mcp/server.py) — Traduce llamadas MCP de los clientes IA en peticiones HTTP al plugin de SketchUp
Related MCP server: SketchupMCP
Inicio Rápido
1. Instalar el Plugin de SketchUp
Copia el archivo Ruby a la carpeta de Plugins de SketchUp:
Windows:
Copy-Item "sketchup_plugin\sketchup_mcp_server.rb" "$env:APPDATA\SketchUp\SketchUp 2026\SketchUp\Plugins\" -ForcemacOS:
cp sketchup_plugin/sketchup_mcp_server.rb ~/Library/Application\ Support/SketchUp\ 2026/SketchUp/Plugins/Nota: Sustituye
2026por tu versión de SketchUp (2024, 2025, etc.)
2. Instalar el Servidor MCP en Python
# Clona el repositorio
git clone https://github.com/Tarkiin/sketchup-mcp.git
cd sketchup-mcp
# Instalar con uv (recomendado)
uv sync
# O con pip
pip install -e .3. Configurar tu Cliente IA
Añade a tu mcp_config.json:
{
"mcpServers": {
"sketchup": {
"command": "uv",
"args": [
"--directory",
"/RUTA/ABSOLUTA/A/sketchup-mcp",
"run",
"sketchup-mcp"
]
}
}
}Añade a claude_desktop_config.json:
{
"mcpServers": {
"sketchup": {
"command": "uv",
"args": [
"--directory",
"/RUTA/ABSOLUTA/A/sketchup-mcp",
"run",
"sketchup-mcp"
]
}
}
}Ubicaciones del archivo de configuración:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Alternativa en Windows (sin depender de uv en el PATH): tras instalar con uv pip install -e . o pip install -e ., puedes apuntar directamente al ejecutable del script de consola generado en el entorno virtual:
{
"mcpServers": {
"sketchup": {
"command": "C:\\ruta\\a\\sketchup-mcp\\.venv\\Scripts\\sketchup-mcp.exe"
}
}
}Añade en los ajustes MCP (Settings → MCP Servers):
{
"sketchup": {
"command": "uv",
"args": [
"--directory",
"/RUTA/ABSOLUTA/A/sketchup-mcp",
"run",
"sketchup-mcp"
]
}
}4. Usar
Abre SketchUp — El plugin arranca automáticamente el servidor HTTP en el puerto 8080
Abre tu cliente IA — El servidor MCP se conecta automáticamente
Pide al IA que cree geometría — Ej: "Crea una habitación de 3x3x2.5 metros"
Si el servidor no arranca solo, ve a Plugins → MCP Server → Start Server en SketchUp.
Tools Disponibles (21)
Consulta
Tool | Descripción |
| Info del modelo: nombre, ruta, unidades, contadores |
| Listar capas (tags) con visibilidad |
| Listar materiales con colores y texturas |
| Listar entidades (caras, aristas, grupos, componentes) |
| Listar definiciones de componentes |
Creación de Geometría
Tool | Descripción |
| Crear polígono a partir de puntos 3D ordenados |
| Crear segmento de línea entre dos puntos |
| Crear grupo vacío con nombre |
| Crear caja (ancho × fondo × alto) |
| Crear círculo desde centro, normal y radio |
| Crear arco con ángulos de inicio/fin |
| Crear polígono regular (triángulo, pentágono, etc.) |
Operaciones de Geometría
Tool | Descripción |
| Extruir una cara a una distancia |
| Extruir una cara a lo largo de un camino de aristas |
Transformaciones
Tool | Descripción |
| Mover entidad con un vector |
| Rotar entidad alrededor de un eje |
| Escalar uniforme o no uniformemente |
Componentes
Tool | Descripción |
| Crear nueva definición de componente + instancia |
| Colocar componente existente en una posición |
Construcción
Tool | Descripción |
| Crear cerchas de techo (king post o fink) |
Avanzado
Tool | Descripción |
| Ejecutar código Ruby arbitrario en SketchUp |
Recursos
El servidor incluye recursos de conocimiento sobre construcción accesibles por la IA:
construction://roof-trusses— Guía de diseño de cerchasconstruction://framing— Estándares de estructuraconstruction://stairs— Estándares de diseño de escaleras
Estructura del Proyecto
sketchup-mcp/
├── src/
│ └── sketchup_mcp/
│ ├── __init__.py # Entry point del paquete
│ ├── __main__.py # Soporte python -m
│ └── server.py # Servidor MCP (Python)
├── sketchup_plugin/
│ └── sketchup_mcp_server.rb # Plugin Ruby para SketchUp
├── resources/ # Archivos de conocimiento de construcción
├── pyproject.toml
├── .gitignore
├── LICENSE
└── README.mdSolución de Problemas
"Cannot connect to SketchUp"
Asegúrate de que SketchUp está abierto
Ve a
Plugins → MCP Server → Start ServerComprueba si el puerto 8080 está libre:
netstat -an | findstr 8080(Windows) olsof -i :8080(macOS)
"Port 8080 already in use"
Cierra otras instancias de SketchUp
O mata el proceso que usa el puerto 8080
El plugin no carga
Verifica que el archivo
.rbestá en la carpeta de Plugins correctaComprueba la Ruby Console de SketchUp (
Window → Ruby Console) para erroresEl plugin es un archivo único y autocontenido, no necesita carpetas adicionales
Timeout del servidor
Operaciones complejas pueden tardar más. El timeout es de 120 segundos.
Si SketchUp muestra "no responde", espera a que termine.
Requisitos
SketchUp 2024, 2025 o 2026
Python 3.10+
uv (recomendado) o pip
Licencia
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
- AlicenseBqualityFmaintenanceConnects Sketchup to Claude AI through the Model Context Protocol, allowing Claude to directly interact with and control Sketchup for prompt-assisted 3D modeling and scene manipulation.10366MIT
- AlicenseBqualityCmaintenanceIntegration that connects Sketchup to Claude AI through the Model Context Protocol, allowing Claude to directly interact with and control Sketchup for prompt-assisted 3D modeling, scene creation, and manipulation.1023MIT
- AlicenseBqualityDmaintenanceEnables direct interaction and control of SketchUp through Claude AI using the Model Context Protocol and a TCP socket connection. It allows for prompt-assisted 3D modeling, component manipulation, and the execution of arbitrary Ruby code within the SketchUp environment.10MIT
- AlicenseAqualityAmaintenanceConnects SketchUp to Claude AI through the Model Context Protocol, enabling prompt-assisted 3D modeling, scene manipulation, and woodworking joinery operations.2213MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
A Model Context Protocol server for Wix AI tools
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/Tarkiin/SketchUp-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server