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
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name to say hello to |
Implementation Reference
- mcp-server/src/server.ts:484-493 (handler)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"}!`, }, ], }; }
- mcp-server/src/server.ts:110-119 (schema)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"], },
- mcp-server/src/server.ts:108-120 (registration)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"], }, },