UNPKG

solidworks-mcp-server

Version:

Clean Architecture SolidWorks MCP Server - Production-ready with SOLID principles

37 lines 1.02 kB
import { z } from 'zod'; import { SolidWorksAPI } from '../solidworks/api.js'; export declare const analysisTools: ({ name: string; description: string; inputSchema: z.ZodObject<{ units: z.ZodDefault<z.ZodEnum<["kg", "g", "lb"]>>; }, "strip", z.ZodTypeAny, { units: "kg" | "g" | "lb"; }, { units?: "kg" | "g" | "lb" | undefined; }>; handler: (args: any, swApi: SolidWorksAPI) => string | { mass: string; volume: string; surfaceArea: string; centerOfMass: { x: string; y: string; z: string; }; }; } | { name: string; description: string; inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; handler: (args: any, swApi: SolidWorksAPI) => string | { dimensions: { width: string; height: string; depth: string; }; volume: string; diagonal: string; }; })[]; //# sourceMappingURL=analysis.d.ts.map