UNPKG

ms-analysis-reports-mcp-server

Version:

PMS analysis reports server handling maintenance reports, equipment analysis, compliance tracking, and performance metrics with ERP access for data extraction

27 lines (26 loc) 804 B
import { ToolResponse } from "../../types/index.js"; interface LubeOilShoreAnalysisArgs { imo: string; session_id?: string; } interface OnboardLubeAnalysisFormArgs { imo: string; session_id?: string; } interface LubeOilTankDistributionArgs { imo: string; session_id?: string; } interface LubeOilRobArgs { imo: string; session_id?: string; } export declare class LubeOilToolHandler { private typesenseClient; constructor(); getLubeOilShoreAnalysis(args: LubeOilShoreAnalysisArgs): Promise<ToolResponse>; getOnboardLubeAnalysisForm(args: OnboardLubeAnalysisFormArgs): Promise<ToolResponse>; getLubeOilTankDistribution(args: LubeOilTankDistributionArgs): Promise<ToolResponse>; getLubeOilRob(args: LubeOilRobArgs): Promise<ToolResponse>; } export {};