UNPKG

mcp-3d-printer-server

Version:

MCP server for connecting Claude with 3D printer management systems

11 lines (10 loc) 772 B
import { PrinterImplementation } from "../types.js"; export declare class CrealityImplementation extends PrinterImplementation { getStatus(host: string, port: string, apiKey: string): Promise<any>; getFiles(host: string, port: string, apiKey: string): Promise<any>; getFile(host: string, port: string, apiKey: string, filename: string): Promise<any>; uploadFile(host: string, port: string, apiKey: string, filePath: string, filename: string, print: boolean): Promise<any>; startJob(host: string, port: string, apiKey: string, filename: string): Promise<any>; cancelJob(host: string, port: string, apiKey: string): Promise<any>; setTemperature(host: string, port: string, apiKey: string, component: string, temperature: number): Promise<any>; }