MCP server
by dmontgomery40
3D Printer Manager enables remote control, file handling, and advanced STL editing with seamless integration for better
Remotely control 3D printers, manage print files, and manipulate STL models through multiple printer management systems. Supports automated print job scheduling and custom model modifications.
3D Printer Manager is a community-built MCP server published by dmontgomery40 that provides AI assistants with tools and capabilities via the Model Context Protocol. 3D Printer Manager enables remote control, file handling, and advanced STL editing with seamless integration for better It is categorized under developer tools.
You can install 3D Printer Manager in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
GPL-2.0
3D Printer Manager is released under the GPL-2.0 license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
According to our notes, 3D Printer Manager benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: 3D Printer Manager is the kind of server we cite when onboarding engineers to host + tool permissions.
3D Printer Manager reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
3D Printer Manager has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We wired 3D Printer Manager into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
3D Printer Manager is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
3D Printer Manager reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Useful MCP listing: 3D Printer Manager is the kind of server we cite when onboarding engineers to host + tool permissions.
Strong directory entry: 3D Printer Manager surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend 3D Printer Manager for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
showing 1-10 of 42
stdio and streamable-http runtime modes with environment-based transport selection.startJob, setTemperature, and print_3mf.blender_mcp_edit_model with optional execution mode for model-edit collaboration workflows.initialize, tools/list, success + failing tools/call, origin rejection).getStatus for Bambu to subscribe to MQTT reports and maintain real-time state..3mf slicer config or user overrides for the MQTT print command..3mf Print Overrides: Add logic to the print_3mf tool to handle user-provided overrides (e.g., calibration flags) and potentially common slicer settings if feasible via MQTT/G-code..3mf file in the MQTT print command (optional but recommended by protocol).bambu-js FTP operations (getFiles, uploadFile) with direct MQTT methods if possible/stable, or contribute FTPS support to bambu-js..3mf Support: Add .3mf printing support for other printer types where applicable.This is a server that allows MCP users to connect with the API endpoints of these 3D Printers:
This server is a Model Context Protocol (MCP) server for connecting Claude with 3D printer management systems. It allows MCP to interact with 3D printers through the APIs of various printer management systems such as OctoPrint, Klipper (via Moonraker), Duet, Repetier, and Bambu Labs printers.
Note on Resource Usage: This MCP server includes advanced 3D model manipulation features that can be memory-intensive when working with large STL files. Please see the "Limitations and Considerations" section for important information about memory usage and performance.
.3mf files directly on Bambu Lab printers (via MQTT command)npm install -g mcp-3d-printer-server
git clone https://github.com/dmontgomery40/mcp-3d-printer-server.git
cd mcp-3d-printer-server
npm install
npm link # Makes the command available globally
You can also run the server using Docker and Docker Compose for a containerized environment.
.env.example to .env and configure your settings.docker-compose up --build -d
Please note that the default Docker setup cannot directly use a slicer installed on your host machine. Mounting the slicer executable directly from the host into the container is unreliable due to operating system and library differences between your host and the container.
The recommended approach is to install your preferred slicer inside the Docker image. This makes the container self-sufficient.
To do this, you will need to modify the Dockerfile. Here's a conceptual example of how you might add PrusaSlicer or OrcaSlicer (specific commands may vary depending on the slicer, its dependencies, and current Alpine packages):
# ... other Dockerfile commands ...
# Example: Install PrusaSlicer or OrcaSlicer (adjust command as needed)
# Check Alpine package repositories first (e.g., apk add prusaslicer or apk add orcaslicer)
# If not available, download and install manually (e.g., AppImage):
# RUN apk add --no-cache fuse # FUSE might be needed for AppImages
# RUN wget https://example.com/path/to/OrcaSlicer_Linux_Vxxxx.AppImage -O /usr/local/bin/orcaslicer && \
# chmod +x /usr/local/bin/orcaslicer
# Set the SLICER_PATH env var accordingly in docker-compose.yml or when running
# Example for installed executable:
ENV SLICER_PATH=/usr/local/bin/orcaslicer
# ... rest of Dockerfile ...
After modifying the Dockerfile, rebuild your image (docker-compose build). You'll also need to ensure the SLICER_PATH environment variable in your .env file or docker-compose.yml points to the correct path inside the container (e.g., `/usr/local/bin/orcasl
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.