We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jjdunlop/siyuan-mcp-extended'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* 简单的日志记录器实现
*/
import type { Logger } from './types.js';
export declare class ConsoleLogger implements Logger {
private prefix;
constructor(prefix?: string);
debug(message: string, ...args: any[]): void;
info(message: string, ...args: any[]): void;
warn(message: string, ...args: any[]): void;
error(message: string, ...args: any[]): void;
}
//# sourceMappingURL=logger.d.ts.map