Skip to main content
Glama

hello

Generate personalized greetings by providing a name. This tool creates custom hello messages as part of the Nano Banana MCP server's natural language processing capabilities.

Instructions

A simple hello world tool

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe name to say hello to

Implementation Reference

  • The handler function for the 'hello' tool that constructs and returns a text response greeting the provided name or 'world' by default.
    case "hello": { return { content: [ { type: "text", text: `Hello, ${args?.name || "world"}!`, }, ], }; }
  • Input schema for the 'hello' tool, defining a required 'name' string parameter.
    inputSchema: { type: "object", properties: { name: { type: "string", description: "The name to say hello to", }, }, required: ["name"], },
  • Tool registration descriptor for 'hello', including name, description, and input schema, returned in listTools response.
    name: "hello", description: "A simple hello world tool", inputSchema: { type: "object", properties: { name: { type: "string", description: "The name to say hello to", }, }, required: ["name"], }, },

Latest Blog Posts

MCP directory API

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