/** * Creative Lab tool — one tool that turns a photo (or text prompt) into a finished * physical-product 3D model, end-to-end. * * The Meshy API has two stages — prototype (concept image, 6cr) then build (textured * 3D model, 30cr) — linked by input_task_id. This tool runs BOTH internally, hides the * intermediate concept image, and returns only the final 3D product (total 36 credits). * * Products (OpenAPI): figure, lamp, keychain, fridge-magnet. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { MeshyClient } from "../services/meshy-client.js"; /** * Register the Creative Lab tool with the MCP server */ export declare function registerCreativeLabTools(server: McpServer, client: MeshyClient): void;