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
/**
* 简单的日志记录器实现
*/
export class ConsoleLogger {
prefix;
constructor(prefix = '[SiYuan-MCP]') {
this.prefix = prefix;
}
debug(message, ...args) {
console.error(`${this.prefix} [DEBUG]`, message, ...args);
}
info(message, ...args) {
console.error(`${this.prefix} [INFO]`, message, ...args);
}
warn(message, ...args) {
console.error(`${this.prefix} [WARN]`, message, ...args);
}
error(message, ...args) {
console.error(`${this.prefix} [ERROR]`, message, ...args);
}
}
//# sourceMappingURL=logger.js.map