/** * 3D printing tools — slicer detection, printability analysis, model repair, multicolor processing. * * Wires up real Meshy print API endpoints: * - POST /openapi/v1/print/analyze — free FDM printability check * - POST /openapi/v1/print/repair — 10 credits, fixes topology issues * - POST /openapi/v1/print/multi-color — 10 credits, outputs multicolor 3MF * * Slicer detection scans the local filesystem for 7 supported slicers and * returns launch commands; the agent (not this server) executes them. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { MeshyClient } from "../services/meshy-client.js"; /** * Register 3D printing tools with the MCP server */ export declare function registerPrintingTools(server: McpServer, client: MeshyClient): void;