Skip to main content
Glama

MCP 3D Printer Server

docker-run.sh680 B
#!/bin/bash # Load environment variables from .env file if it exists if [ -f .env ]; then export $(grep -v '^#' .env | xargs) fi # Build the Docker image docker build -t mcp-3d-printer-server . # Run the Docker container docker run --rm -it \ --network host \ -e PRINTER_HOST="${PRINTER_HOST}" \ -e PRINTER_PORT="${PRINTER_PORT}" \ -e PRINTER_TYPE="${PRINTER_TYPE}" \ -e API_KEY="${API_KEY}" \ -e BAMBU_SERIAL="${BAMBU_SERIAL}" \ -e BAMBU_TOKEN="${BAMBU_TOKEN}" \ -e TEMP_DIR="/app/temp" \ -e SLICER_TYPE="${SLICER_TYPE}" \ -e SLICER_PATH="${SLICER_PATH}" \ -e SLICER_PROFILE="${SLICER_PROFILE}" \ -v "$(pwd)/temp:/app/temp" \ mcp-3d-printer-server

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/DMontgomery40/mcp-3D-printer-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server