npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

elegoo-mcp-server

v1.0.0

Published

MCP server for Elegoo 3D printers (Centauri Carbon) via SDCP protocol - 100% local, no cloud

Readme

Elegoo MCP Server

A local MCP (Model Context Protocol) server for controlling Elegoo 3D printers via the SDCP protocol.

100% local - no cloud dependencies.

⚠️ Your computer and printer must be on the same local network (WiFi or Ethernet).

Tested with Elegoo Centauri Carbon and Claude Desktop. Should work with any MCP-compatible client (VS Code, Cursor, etc.).

Features

| Feature | Supported | Notes | |---------|-----------|-------| | Multi-printer management | ✓ | Add, remove, switch between printers | | Connect/Disconnect | ✓ | WebSocket connection | | Get Status | ✓ | Temperatures, position, print progress | | Pause/Resume/Stop Print | ✓ | | | Start Print | ✓ | From files on printer | | Light Control | ✓ | On/Off | | List Files | ✓ | With thumbnails for printed files | | Camera Stream | ✓ | Live MJPEG URL | | Temperature Control | ✗ | Not supported via SDCP | | Fan Control | ✗ | Not supported via SDCP | | Speed Control | ✗ | Not supported via SDCP | | Movement/Homing | ✗ | Not supported via SDCP | | Delete Files | ✗ | Not supported via SDCP |

Features marked ✗ must be controlled via the printer touchscreen.

Prerequisites

  • Node.js 18+
  • Elegoo Centauri Carbon (or compatible SDCP printer)
  • Printer on same local network

Installation

Option 1: npx (Recommended)

No installation needed! Just configure Claude Desktop directly.

Option 2: Global install

npm install -g elegoo-mcp-server

Option 3: From source

git clone https://github.com/skribascode/elegoo-mcp-server.git
cd elegoo-mcp-server
npm install
npm run build

Configuration for Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

Using npx (recommended)

{
  "mcpServers": {
    "elegoo": {
      "command": "npx",
      "args": ["elegoo-mcp-server"]
    }
  }
}

Using global install

{
  "mcpServers": {
    "elegoo": {
      "command": "elegoo-mcp-server"
    }
  }
}

Using local clone

{
  "mcpServers": {
    "elegoo": {
      "command": "node",
      "args": ["/path/to/elegoo-mcp-server/dist/index.js"]
    }
  }
}

Restart Claude Desktop after saving.

Quick Start

  1. Install the MCP (see above)
  2. Restart Claude Desktop
  3. Say: "Connect to my Elegoo printer"
  4. Claude will ask for your printer's IP address
  5. Done! Your printer is saved for future sessions.

Usage Examples

"What's the printer status?"
"Pause the print"
"Resume printing"
"Turn on the light"
"Show me the files on the printer"
"Start printing benchy.gcode"
"Show me the camera"

Available Tools

Startup

| Tool | Description | |------|-------------| | elegoo_start | Initialize and connect to default printer | | elegoo_setup | Configure a new printer | | elegoo_select | Switch between saved printers |

Configuration

| Tool | Description | |------|-------------| | elegoo_add_printer | Add a printer | | elegoo_remove_printer | Remove a printer | | elegoo_list_printers | List saved printers | | elegoo_set_default | Set default printer | | elegoo_update_printer | Update printer settings |

Printer Control

| Tool | Description | |------|-------------| | elegoo_connect | Connect to printer | | elegoo_disconnect | Disconnect | | elegoo_status | Get full status (temps, position, progress) | | elegoo_wake | Wake up sleeping printer | | elegoo_pause | Pause print | | elegoo_resume | Resume print | | elegoo_stop | Cancel print | | elegoo_start_print | Start a print job | | elegoo_set_light | Turn light on/off | | elegoo_list_files | List files / print history (files with ✓ = already printed) | | elegoo_view_file | View file thumbnail (printed files only) | | elegoo_camera | Get camera stream URL |

Protocol

This server implements SDCP (Smart Device Control Protocol) v3.0.0.

  • Connection: WebSocket at ws://{IP}:3030/websocket
  • Config storage: ~/.elegoo/config.json

Known Issues

  • Firmware v1.1.29: Light control may not work during printing. Firmware v1.1.25 works correctly.

Author

Made by @skribascode in vibe coding ;-)

Credits

License

MIT