OrcaSlicer MCP
An MCP server that enables headless slicing with OrcaSlicer, preset management, G-code analysis, and local network control of an Elegoo Centauri Carbon 3D printer.
README
OrcaSlicer MCP
An MCP server that gives Claude (or any MCP client) the full FDM pipeline: slice models headlessly with OrcaSlicer, manage presets, analyze G-code, and control your printer over the local network — Klipper, OctoPrint, Prusa, Duet, Elegoo, or Bambu.
Ask your assistant to "slice this STL with my draft profile and tell me the print time" or "check on the print and show me the camera" — and it can.
Tools
| Tool | What it does |
|---|---|
list_profiles |
List machine/process/filament presets (system + user), with search |
get_profile |
Read a preset with its full inheritance chain resolved |
update_profile |
Edit a user preset (system presets are read-only) |
gui_project_state |
Read what's open in the OrcaSlicer GUI — file + chosen presets/settings |
slice_model |
STL/3MF/STEP → G-code via the OrcaSlicer CLI; presets default to the open GUI project; returns time/filament/temp stats |
analyze_gcode |
Parse Orca G-code: time, filament, layers, and the actual commanded temps (M109/M190) |
printer_setup |
What printer we can talk to and what's still needed — run this first |
configure_printer |
Point the server at a printer, verify it answers, save it |
printer_status |
Live normalized state (idle/heating/printing/paused/error), temps, layer progress |
printer_snapshot |
Webcam still — check first-layer adhesion remotely |
printer_attributes |
Model, firmware, mainboard id |
printer_files |
List files on the printer (where the firmware allows it) |
upload_gcode |
Upload G-code (does not start printing) |
start_print |
Start a print — checks the printer is idle first, then verifies the job actually started |
print_control |
Pause / resume / stop |
Printer support
Slicing works for every printer OrcaSlicer supports. Printer control speaks these protocols:
| Type | Printers | Needs | Verified |
|---|---|---|---|
moonraker |
Klipper — Voron, RatRig, Sovol, Creality K1, Neptune 4… | host, api_key (only if Moonraker requires one) | docs + mock tests |
octoprint |
Anything behind OctoPrint (most Marlin printers) | host, api_key (Settings → API) | docs + mock tests |
prusalink |
Prusa MK4 / MK3.9 / XL / MINI / CORE One | host, password (Settings → Network), user maker |
docs + mock tests |
duet |
Duet 2/3 (RepRapFirmware) | host, password if set | docs + mock tests |
elegoo |
Elegoo Centauri Carbon | host | live hardware |
bambu |
Bambu Lab P1/X1/A1/H2, LAN mode — experimental | host, serial, access_code, [bambu] extra |
docs only |
You probably don't need to configure anything. If you already set up
network printing in OrcaSlicer, the server reads the printer's address and
protocol from your machine preset (print_host / host_type). Otherwise ask
your assistant to run printer_setup — it scans, reports what it finds, and
tells the assistant to ask you which printer you own rather than guessing.
Honest scope: only the Elegoo path has been exercised on real hardware by this project. The rest were built against each protocol's official docs and source (and fact-checked against them), with mock-transport tests asserting the parts that can bite — including that upload never starts a print (asserted for Moonraker, OctoPrint and PrusaLink, whose APIs have an auto-start flag to suppress; Duet, Elegoo and Bambu have no such flag — starting is a separate call by construction). Reports from real machines are welcome.
Adding a protocol is one small class in backends.py.
Setup
Requirements: Python 3.10+, OrcaSlicer (tested with 2.4.1), and — for printer control — a supported printer on your LAN.
git clone https://github.com/ShreddyKrueger75/orcaslicer-mcp
cd orcaslicer-mcp
uv venv --python 3.11 && uv pip install -e .
claude mcp add orcaslicer -- "$(pwd)/.venv/bin/python" "$(pwd)/server.py"
Configuration is optional — sensible defaults are detected per platform:
| Env var | Default |
|---|---|
ORCA_SLICER_BIN |
the standard OrcaSlicer install path for your OS |
ORCA_SLICER_DATA |
OrcaSlicer's config dir (presets) for your OS |
PRINTER_TYPE |
read from your OrcaSlicer machine preset's host_type |
PRINTER_HOST |
the print_host saved in your OrcaSlicer machine preset |
PRINTER_PORT, PRINTER_API_KEY, PRINTER_USER, PRINTER_PASSWORD, PRINTER_SERIAL, PRINTER_ACCESS_CODE |
per-protocol; also readable from the preset or configure_printer |
PRINTER_SNAPSHOT_URL |
OctoPrint webcam URL (default http://<host>:8080/?action=snapshot) |
ORCASLICER_MCP_CONFIG |
~/.config/orcaslicer-mcp/printer.json (written 0600) |
DEFAULT_BED_TYPE |
Textured PEI Plate |
Safety model
This server can heat hardware and start multi-day prints, so the dangerous paths are guarded:
- Plate type is always pinned. The Orca CLI silently defaults to
Cool Plate (45 °C bed) — enough to detach a big part and wreck a hotend
(ask us how we know). Every slice sets
curr_bed_typeexplicitly, from the caller, the open GUI project, orDEFAULT_BED_TYPE. - Stats report what the machine will do, not what the slicer intended:
bed/nozzle temps are parsed from the
M190/M109commands in the G-code. start_printverifies. Some firmwares silently drop start commands sent while busy; the tool refuses to fire unless the printer is idle, then polls until the job demonstrably starts (or reports the error code if it doesn't).- Upload never prints. Every backend suppresses its protocol's start-on-upload flag, with tests per protocol that has one.
- Filenames are data, never syntax. A name reaches firmware inside a G-code
argument (Duet:
M32 "name") and inside URLs;;or"would let a crafted name append arbitrary G-code (M109 S300) or escape the upload directory. Names are validated before they leave the server. - No guessing which printer. If several printers are configured and nothing
says which you mean, the server asks instead of picking; an unknown
host=is refused rather than driven with another printer's protocol and credentials. - Bed type is whitelisted against OrcaSlicer's own
BedTypeenum (all 7 plates, Supertack included). An unrecognized name would silently become Cool Plate;slice_modelrejects invalid values instead. - Plate-clear gate. Starting a new job while the previous one is
COMPLETED/STOPPED (old part likely still on the plate) requires an explicit
plate_cleared=Trueafter the user confirms — otherwise the toolhead can crash into the finished part. Concurrentstart_printcalls are locked out. resumeonly resumes paused prints — never a stopped/errored job where the nozzle may be sitting in a failure.- Preset edits can't become code.
update_profilerefuses thepost_processkey (it executes shell commands at slice time). - Your GUI choices win. If a project is open in OrcaSlicer, unset slicing parameters come from it rather than from the model's guesses.
start_print's description instructs clients to confirm with the user — it heats hardware.
Scope note: this is a local, single-user tool. File-path parameters
(model_path, output_dir, gcode_path) operate on your filesystem with
your permissions, like any local CLI.
How headless slicing works (the non-obvious part)
OrcaSlicer user presets are inheritance deltas (inherits: "<parent>", no
type field) and the CLI rejects them as-is. The server resolves the full
inheritance chain into flat JSON configs, tags them with type, and satisfies
the CLI's compatibility check — which compares the process/filament
compatible_printers list against the machine preset's inherits value —
by pinning both to the machine's nearest system ancestor. Verified against the
OrcaSlicer 2.4.1 source (src/OrcaSlicer.cpp, ~line 2560).
Known limits
- Centauri Carbon CC1 firmware cannot list/delete files or report disk space over SDCP (CC2 can). Uploads to a full or busy printer fail with HTTP 500 — manage storage on the touchscreen.
- OctoPrint and PrusaLink don't report layer counts over their APIs; Duet has no standard camera endpoint. Tools say so instead of failing obscurely.
- The plate-clear gate relies on the printer reporting a finished job. Duet
(
job.lastFileName) and OctoPrint (100% progress) are inferred; a cancelled OctoPrint job is indistinguishable from idle over its API, so that one case won't trip the gate. - On Windows the saved config can't be locked to your user with
chmod; it inherits the folder's ACL. PreferPRINTER_*env vars if that matters. - Cloud host types (PrusaConnect, CrealityPrint, Obico, SimplyPrint, 3DPrinterOS) aren't supported — point the server at the printer's own IP.
- Editing profiles while the OrcaSlicer GUI is open may be overwritten when the GUI exits.
- Slicing timeout is 600 s per call; the CLI reports no progress.
Credits
Elegoo control is pycentauri (Apache-2.0); optional Bambu control is bambulabs-api (MIT); other protocols are spoken directly over HTTP with httpx (BSD-3-Clause). Slicing is OrcaSlicer's own CLI. This project is MIT licensed.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.