jobnimbus-mcp-client
Version:
JobNimbus MCP Client - Connect Claude Desktop to remote JobNimbus MCP server
41 lines • 1.31 kB
TypeScript
/**
* Get Material Specifications Tool - Simplified Implementation
*/
import { BaseTool } from '../baseTool.js';
export declare class GetMaterialSpecificationsTool extends BaseTool {
get definition(): {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {
sku: {
type: string;
description: string;
};
material_name: {
type: string;
description: string;
};
category: {
type: string;
description: string;
};
};
};
};
execute(input: any): Promise<{
success: boolean;
specification: import("../../types/calculations.types.js").MaterialSpecification | null;
specifications?: undefined;
total_count?: undefined;
} | {
success: boolean;
specifications: import("../../types/calculations.types.js").MaterialSpecification[];
total_count: number;
specification?: undefined;
}>;
}
declare const _default: () => GetMaterialSpecificationsTool;
export default _default;
//# sourceMappingURL=getMaterialSpecifications.d.ts.map