/** * Standalone post-processing tools: convert, resize, uv-unwrap. * * - POST /openapi/v1/convert — 1 credit, format conversion (cheaper than remesh) * - POST /openapi/v1/resize — 1 credit, real-world resizing * - POST /openapi/v1/uv-unwrap — 5 credits, fresh UV layout (GLB only, ≤40k faces) * * All three accept exactly one of input_task_id / model_url. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { MeshyClient } from "../services/meshy-client.js"; /** * Register conversion / resize / uv-unwrap tools with the MCP server */ export declare function registerConversionTools(server: McpServer, client: MeshyClient): void;