Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SKETCHUP_MCP_HOSTNoHost where SketchUp is runninglocalhost
SKETCHUP_MCP_PORTNoTCP port the Ruby server listens on9876
SKETCHUP_MCP_SCREENSHOT_DIRNoWSL path to a host-side temp dir (e.g. /mnt/c/Users/<you>/AppData/Local/Temp); the screenshot tool raises an error if unset

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
eval_rubyA

Execute arbitrary Ruby in the active SketchUp model and return result.to_s.

get_scene_infoB

Return model title, entity count, active units, bounds, and selection size.

get_selectionA

Return the currently selected entities (entityID, typename, bbox).

screenshotA

Capture the current SketchUp view and return it as an image.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 4 tools

Disambiguation5/5

Each tool serves a clearly distinct purpose: eval_ruby executes arbitrary code, get_scene_info returns model metadata, get_selection returns selected entities, and screenshot captures the viewport. There is no overlap or ambiguity in when to use each tool.

Naming Consistency4/5

Three tools use a verb_noun pattern (eval_ruby, get_scene_info, get_selection), but 'screenshot' is a single noun-verb hybrid that breaks the pattern slightly. The set is still mostly predictable and readable.

Tool Count5/5

Four tools is a lean, well-scoped set for a bridge server. Each tool earns its place: one general execution tool plus three focused observation helpers.

Completeness4/5

The eval_ruby escape hatch allows arbitrary model modifications, so most SketchUp operations are reachable. However, the lack of structured write/update/delete tools for specific entity types means agents must rely on raw Ruby rather than dedicated operations.

Maintenance

ActivityMaintained
ResponsivenessNo issues