UNPKG

@poai/mcpm-aider

Version:

Your MCP CLI Manager for aider(forked from @mcpm/cli). Helps you install/remove/search your MCP projects. You can also manage your MCP in Claude App with natural language.

22 lines (21 loc) 579 B
export declare enum LogLevel { DEBUG = 0, INFO = 1, WARN = 2, ERROR = 3 } declare class Logger { private static instance; private logLevel; private constructor(); static getInstance(): Logger; setLogLevel(level: LogLevel): void; private shouldLog; private formatMessage; debug(message: string, ...args: unknown[]): void; info(message: string, ...args: unknown[]): void; warn(message: string, ...args: unknown[]): void; error(message: string, ...args: unknown[]): void; } export declare const logger: Logger; export {};