purchase-mcp-server
Version:
Purchase and budget management server handling requisitions, purchase orders, expenses, budgets, and vendor management with ERP access for data extraction
10 lines (9 loc) • 641 B
TypeScript
import { ToolResponse } from "../../types/index.js";
import { GetFleetManagementInformationArguments, GetVesselPurchaseOrderInformationArguments, GetVesselBudgetExpenseInformationArguments } from "../../types/index.js";
export declare class MongodbToolsHandler {
private typesenseClient;
constructor();
getFleetManagementInformation(args: GetFleetManagementInformationArguments): Promise<ToolResponse>;
getVesselPurchaseOrderInformation(args: GetVesselPurchaseOrderInformationArguments): Promise<ToolResponse>;
getVesselBudgetExpenseInformation(args: GetVesselBudgetExpenseInformationArguments): Promise<ToolResponse>;
}