We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Aeven-AI/mcp-nanobanana'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* @license
* Copyright 2025 Aeven
* SPDX-License-Identifier: Apache-2.0
*/
export type LogLevel = "silent" | "error" | "warn" | "info" | "debug";
export declare const logger: {
getLevel(): LogLevel;
setLevel(level: LogLevel): void;
setDefaultLevel(level: LogLevel): void;
error(...args: unknown[]): void;
warn(...args: unknown[]): void;
info(...args: unknown[]): void;
debug(...args: unknown[]): void;
};