Skip to main content
Glama
gemyago

HelloWorld MCP Server

by gemyago

hello

Generate personalized greetings by specifying a name. Use this tool to send customizable messages within the HelloWorld MCP Server environment.

Instructions

Say hello to someone

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoThe name of the person to greetWorld

Implementation Reference

  • Handler implementation for the 'hello' tool. It takes an optional 'name' argument (defaults to 'World') and returns a text content block with a greeting message.
    case 'hello': { const targetName = (args as { name?: string }).name || 'World'; return { content: [ { type: 'text', text: `Hello, ${targetName}! 👋 Welcome to the HelloWorld MCP server!`, }, ], }; }
  • src/index.ts:29-41 (registration)
    Registration of the 'hello' tool in the ListTools response, including name, description, and input schema definition.
    name: 'hello', description: 'Say hello to someone', inputSchema: { type: 'object', properties: { name: { type: 'string', description: 'The name of the person to greet', default: 'World', }, }, }, },
  • Input schema definition for the 'hello' tool, specifying an optional 'name' string parameter.
    type: 'object', properties: { name: { type: 'string', description: 'The name of the person to greet', default: 'World', }, }, }, },

Other Tools

Related Tools

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/gemyago/typescript-mcp-boilerplate'

If you have feedback or need assistance with the MCP directory API, please join our Discord server