loading…
Search for a command to run...
loading…
Qidi Printer - MCP server providing AI-powered tools and automation by MEOK AI Labs
Qidi Printer - MCP server providing AI-powered tools and automation by MEOK AI Labs
QIDI 3D Printer MCP Server Controls QIDI 4 Max Combo (and other Klipper/Moonraker printers) via Moonraker REST API. Built by MEOK AI Labs for Sovereign Temple v3.0.
| Tool | Description |
|---|---|
printer_status |
Get full printer status: state, temperatures, and print progress. No parameters |
get_temperatures |
Get current bed and nozzle temperatures with targets. |
start_print |
Start printing a gcode file already uploaded to the printer. |
pause_print |
Pause the current print job. |
resume_print |
Resume a paused print job. |
cancel_print |
Cancel the current print job. The printer will stop and cool down. |
list_files |
List all gcode files uploaded to the printer. |
send_gcode |
Send a raw G-code command to the printer. |
print_progress |
Get current print progress: percentage complete, elapsed time, estimated time re |
preheat |
Preheat the printer bed and nozzle to target temperatures. |
pip install meok-qidi-printer-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"qidi-printer": {
"command": "python",
"args": ["-m", "meok_qidi_printer_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 10 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"qidi-printer-mcp": {
"command": "npx",
"args": []
}
}
}