UNPKG

purchase-mcp-server

Version:

Purchase and budget management server handling requisitions, purchase orders, expenses, budgets, and vendor management with ERP access for data extraction

12 lines (11 loc) 424 B
/** * Fetch IMO numbers for a specific company from MongoDB * @param companyName The name of the company to fetch IMO numbers for * @returns Array of IMO numbers as strings */ export declare function fetchCompanyImoNumbers(companyName: string): Promise<string[]>; /** * Get the cached IMO numbers for the company * @returns Array of IMO numbers as strings */ export declare function getCompanyImoNumbers(): string[];