mcp-3D-printer-server
MCP ServerFreeConnects MCP to major 3D printer APIs (Orca, Bambu, OctoPrint, Klipper, Duet, Repetier, Prusa, Creality). Control prints, monitor status, and perform advanced STL operations like scaling, rotation, sectional editing, and base extension. Includes slicing and visualization.
Capabilities11 decomposed
multi-printer-api orchestration with unified control interface
Medium confidenceAbstracts 8+ distinct 3D printer APIs (Bambu Lab, OctoPrint, Klipper via Moonraker, Duet, Repetier, Prusa, Creality, Orca Slicer) behind a single MCP tool interface, translating normalized commands into printer-specific API calls and response schemas. Uses adapter pattern with per-printer protocol handlers that map common operations (start print, pause, resume, cancel, temperature control) to native API endpoints while normalizing heterogeneous response formats into consistent JSON structures.
Unified MCP interface across 8+ heterogeneous printer APIs with per-printer adapter handlers that normalize both request schemas and response formats, enabling single-prompt control of mixed-vendor fleets without client-side branching logic
Broader printer support than OctoPrint-only tools and more unified than building separate integrations for each API, with MCP standardization enabling drop-in LLM integration
stl/3mf file manipulation with geometric transformations
Medium confidenceParses and modifies 3D model files (STL, 3MF formats) to perform structural operations including scaling, rotation, translation, and sectional editing. Likely uses a 3D geometry library (Three.js mentioned in tags) to load mesh data, apply transformation matrices, and serialize back to file format. Supports both ASCII and binary STL formats with format auto-detection and preservation of original file properties during round-trip operations.
Integrates Three.js-based mesh transformation with MCP tool interface, enabling LLM-driven model modifications without external CAD tools or file format conversion steps
More accessible than command-line tools like Meshlab or Blender scripting because it's callable from LLM prompts; faster than web-based tools because it runs locally in the MCP server
printer configuration management and profile storage
Medium confidenceStores and manages printer profiles containing hardware specifications (bed size, nozzle diameter, max speeds), firmware settings, and slicing defaults. Enables quick printer registration with minimal manual configuration and provides configuration templates for common printer models. Supports configuration versioning and rollback to previous settings.
Maintains in-memory printer profiles with configuration templates for common models, enabling quick multi-printer setup without manual API credential entry per printer
More convenient than manual per-printer configuration because it provides templates; less persistent than dedicated configuration management systems
real-time printer status monitoring and telemetry aggregation
Medium confidencePolls or subscribes to printer status endpoints (temperature, print progress, nozzle position, bed state, error codes) and aggregates heterogeneous telemetry into normalized status objects. Implements per-printer polling intervals or webhook subscriptions depending on API capabilities (e.g., Klipper supports WebSocket subscriptions via Moonraker, OctoPrint uses REST polling). Maintains in-memory state cache to enable fast status queries without repeated API calls.
Normalizes telemetry from 8+ printer APIs with heterogeneous polling/subscription models into unified status schema, with in-memory caching to reduce API load while maintaining sub-minute freshness
More comprehensive than printer-specific dashboards because it aggregates across vendors; faster than querying each API individually because of local state cache
slicing integration with orca slicer and native slicer apis
Medium confidenceInvokes slicing engines (Orca Slicer, Bambu Studio, Prusa Slicer, Creality Slicer) via their native APIs or CLI interfaces to convert STL/3MF models into printer-ready G-code. Passes model files, printer profiles, and slicing parameters (layer height, infill, support type) to the slicer and retrieves generated G-code output. Handles slicer-specific configuration formats (e.g., Bambu's .3mf project files with embedded settings) and normalizes output G-code for target printer compatibility.
Wraps multiple slicer CLIs (Orca, Bambu, Prusa, Creality) with unified parameter schema and error handling, enabling LLM-driven slicing without slicer GUI or manual profile management
More flexible than web-based slicing services because it runs locally and supports multiple slicers; faster than manual slicing because it's fully automated
3d model visualization and preview generation
Medium confidenceRenders STL/3MF models to 2D preview images or interactive 3D visualizations using Three.js, enabling LLMs and users to inspect models before printing. Generates orthographic or perspective projections, applies lighting and shading, and optionally overlays printer bed dimensions or support structures. May support multiple output formats (PNG, JPEG, WebGL canvas) depending on client capabilities.
Integrates Three.js rendering into MCP tool interface to generate model previews directly from LLM context, with support for bed dimension overlays and support structure visualization
More integrated than external viewers because it's callable from LLM prompts; faster than web-based tools because rendering happens server-side
printer-specific g-code post-processing and validation
Medium confidenceApplies printer-specific transformations to G-code files before sending to printer, including firmware-specific command translation, coordinate system adjustments, and compatibility checks. Validates G-code syntax, detects unsupported commands, and optionally injects printer-specific preambles (e.g., bed leveling sequences, nozzle priming). Handles firmware variants (Marlin, Klipper, RepRapFirmware, Repetier) with different command dialects and parameter formats.
Implements firmware-aware G-code validation and post-processing with per-firmware command dialect handlers, enabling safe cross-slicer/cross-firmware printing without manual review
More comprehensive than generic G-code validators because it understands firmware-specific dialects; more automated than manual pre-print checks
print job queuing and scheduling across multiple printers
Medium confidenceManages a queue of print jobs with support for prioritization, scheduling, and automatic dispatch to available printers. Tracks job state (queued, printing, completed, failed) and implements simple scheduling logic (FIFO, priority-based, or round-robin across printers). Integrates with real-time status monitoring to detect when printers become available and automatically start next queued job. Supports job dependencies (e.g., print B only after A completes) and conditional logic based on printer state.
Implements in-memory job queue with automatic printer dispatch based on real-time status monitoring, enabling LLM-driven multi-printer scheduling without external job management systems
Simpler than dedicated print farm management software but integrated into MCP context; more flexible than printer-native queuing because it spans multiple vendors
error detection and recovery with printer-specific diagnostics
Medium confidenceMonitors printer telemetry for error conditions (temperature faults, mechanical failures, connectivity loss) and implements recovery strategies (retry, pause, cancel, alert). Maintains printer-specific error code mappings to translate firmware error codes into human-readable diagnostics. Supports automatic recovery actions (e.g., resume after brief pause, retry failed command) with configurable thresholds and backoff strategies.
Implements printer-specific error code mapping and automatic recovery strategies with configurable thresholds, enabling resilient unattended printing across heterogeneous printer fleet
More proactive than manual monitoring because it detects and responds to errors automatically; more reliable than printer-native error handling because it spans multiple vendors
mcp tool schema generation and llm prompt engineering
Medium confidenceExposes all 3D printer operations as standardized MCP tools with JSON schemas, enabling LLMs to discover and invoke capabilities through natural language. Generates tool descriptions, parameter schemas, and usage examples that guide LLM behavior. Implements tool validation to ensure LLM-generated parameters are within safe ranges (e.g., temperature limits, bed size constraints) before execution.
Exposes heterogeneous 3D printer APIs as unified MCP tool schemas with built-in parameter validation, enabling LLMs to control printers through natural language without custom integration code
More standardized than custom LLM integrations because it uses MCP protocol; more discoverable than hardcoded tool lists because schemas are self-describing
base extension and support structure manipulation
Medium confidenceModifies model geometry to extend or modify base structures for improved print stability. Adds raft-like extensions, thickens bases, or adjusts support contact points programmatically. Works with parsed STL/3MF mesh data to identify base geometry, compute extension vectors, and merge new geometry with original model. Supports both automatic base detection and manual specification of base regions.
Implements heuristic-based base detection and geometric extension for STL/3MF models, enabling programmatic stability improvements without manual CAD editing
More automated than manual base editing in CAD software; more accessible than scripting geometry libraries directly
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with mcp-3D-printer-server, ranked by overlap. Discovered automatically through the match graph.
OctoEverywhere For 3D Printing
** - A 3D Printing MCP server that allows for querying for live state, webcam snapshots, and 3D printer control.
AI Figure Generator
Turn photos into collectible 3D action figures and figurines with styled packaging...
Silly Robot Cards
Customized greeting card design with unique...
Meshy
AI 3D model generation from text or images
@orval/mcp
[](https://badge.fury.io/js/orval) [](https://opensource.org/licenses/MIT) [ may cause memory pressure in Node.js runtime
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 12, 2026
About
Connects MCP to major 3D printer APIs (Orca, Bambu, OctoPrint, Klipper, Duet, Repetier, Prusa, Creality). Control prints, monitor status, and perform advanced STL operations like scaling, rotation, sectional editing, and base extension. Includes slicing and visualization.
Categories
Alternatives to mcp-3D-printer-server
Are you the builder of mcp-3D-printer-server?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →