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
#!/usr/bin/env node
/**
* @license
* Copyright 2025 Aeven
* SPDX-License-Identifier: Apache-2.0
*/
import { NanoBananaServer } from "./server.js";
const server = new NanoBananaServer();
const startServer = async () => {
try {
await server.start();
const initError = server.getInitializationError();
if (initError) {
console.error(`Nano Banana server started with an initialization error:`);
console.error(initError.message);
console.error("Generation tools will fail until the environment is configured correctly.");
}
}
catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
console.error(`Failed to start Nano Banana server: ${errorMessage}`);
process.exit(1);
}
};
startServer();