UGS-MCP
This MCP server lets an AI assistant connect to, monitor, and control CNC machines via Universal GCode Sender (UGS), with built-in safety confirmation mechanisms to prevent autonomous machine movement.
Connection Management
Connect to a CNC machine via serial port (configurable firmware and baud rate), disconnect, and troubleshoot issues by listing available ports and checking pendant reachability.
Machine & Job Status
Retrieve real-time machine state (Idle/Run/Alarm), current position, feed rate, spindle speed, and monitor running job progress.
Motion Control (Token-Protected) All motion commands require a two-step token confirmation — the AI cannot self-confirm movement:
Jog a single axis (X, Y, or Z) by a specified distance and feed rate
Run the homing cycle ($H)
Rapid return to G54 work zero (X0 Y0 Z0)
Set G54 work coordinate offsets at the current position
Stream and run G-code files (with a built-in safety check and preview before execution)
Execute saved macros by name
Job Control
Pause a running job (feed hold)
Cancel a running job (uses a simple boolean confirmation instead of a token, since stopping is always safer)
G-code Analysis & Macros
Translate G-code into plain English, line by line, with machine state context
Perform safety checks (spindle off during cuts, missing unit declarations, zero feedrate on cut moves, etc.)
Estimate cycle time from feed rates and distances (returns HH:MM:SS)
List all tools referenced in a file with first-use line and usage count
Save validated G-code snippets as named, reusable macros
List all saved macros with names and descriptions
ugs-mcp
MCP server for controlling CNC machines via Universal GCode Sender.
Lets Claude (or any MCP-compatible AI assistant) connect to a CNC machine, inspect G-code, and issue motion commands — all through the UGS Pendant REST API.
⚠️ STOP. READ THIS FIRST.
This software controls machines that can damage equipment, destroy parts, and injure or kill people.
CNC machines move fast and don't know where your hands are. Before you use this:
Read SAFETY.md. All of it.
Understand the token confirmation system that prevents Claude from moving your machine autonomously.
Know where your E-stop is.
If you skim the safety docs and something goes wrong, that's on you. We warned you.
Related MCP server: CNCjs MCP Server
What it does
Connection tools — Connect/disconnect UGS to your CNC, troubleshoot serial port issues
Status tools — Read machine state, position, feed rate, spindle speed
Motion tools (token-protected) — Jog axes, home, return to work zero, run G-code files and macros
G-code inspector — Translate G-code to English, safety check, cycle time estimate, tool list
Every motion command uses a two-step token protocol: Claude generates a token, shows it to you, and the machine only moves when you read the token back. Claude cannot bypass this — tokens are generated and validated server-side.
Requirements
Universal GCode Sender 2.x (winder.github.io/ugs_website)
UGS Pendant plugin installed and active (Tools → Plugins → Installed)
Pendant running at
http://localhost:8080(default)Python 3.11+
Installation
Via pip
pip install ugs-mcpFrom source
git clone https://github.com/zackpeters93/ugs-mcp.git
cd ugs-mcp
pip install -e .Claude Code setup
claude mcp add ugs-cnc ugs-mcpOr from source (without pip install):
claude mcp add ugs-cnc /path/to/ugs-mcp/ugs_mcp/run_server.shClaude Desktop setup
In ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"ugs-cnc": {
"command": "ugs-mcp"
}
}
}Or from source:
{
"mcpServers": {
"ugs-cnc": {
"command": "/opt/homebrew/opt/python@3.11/libexec/bin/python3",
"args": ["-m", "ugs_mcp.server"],
"cwd": "/path/to/ugs-mcp"
}
}
}Configuration
Environment variables (all optional):
Variable | Default | Description |
|
| UGS Pendant host |
|
| UGS Pendant port |
|
| Directory for saved G-code macros |
|
| Rapid speed used in return-to-zero |
Copy .env.example to .env to customize.
The token system
Every motion tool uses a mandatory two-step confirmation:
Step 1 — Call the tool without a token. Claude shows you a preview (axis, distance,
resulting position, safety warnings) and a token like [A3F8B2C1].
Step 2 — Read the preview. If you agree, tell Claude the token. Claude calls the tool
again with confirmation_token="A3F8B2C1". The machine moves.
Tokens are generated server-side via uuid4(), expire in 2 minutes, and are single-use.
Claude cannot predict, fabricate, or reuse them. The only way movement happens is if you
type the token back.
Tools
See USER_GUIDE.md for the full tool reference with parameters, examples, and typical workflows.
Category | Tools |
Connection |
|
Status |
|
Job |
|
Motion |
|
G-code |
|
Tested with
SainSmart Genmitsu 3018 Pro (GRBL)
UGS 2.x with Pendant plugin
macOS / Python 3.11
Likely works with any GRBL-based machine. TinyG/FluidNC/Smoothieware untested.
License
MIT — see LICENSE.
No warranty. No liability. Read SAFETY.md.
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-qualityBmaintenanceAn MCP server that enables AI assistants to control and monitor Klipper 3D printers via the Moonraker API. It supports comprehensive printer management, including G-code execution, toolchanger operations, and real-time status monitoring.17
- AlicenseAqualityDmaintenanceBridges Claude Code to CNCjs to enable remote control and monitoring of GRBL-based CNC machines. It provides a comprehensive toolset for managing G-code jobs, machine movement, and safety operations through natural language.30MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables Claude to control CNC routers running FluidNC firmware using natural language. It provides 27 tools for monitoring status, jogging axes, executing G-code, and managing SD card files and machine configurations.27MIT
- AlicenseAqualityDmaintenanceMCP server for controlling Meticulous espresso machines via Claude and other AI clients.2257MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/zackpeters93/ugs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server