Skip to main content
Glama

hello

Generate personalized greeting messages by providing a name parameter. This MCP-BOS tool returns customized welcome text for AI applications.

Instructions

返回问候消息

Args: name: 要问候的名称

Returns: str: 问候消息

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoWorld

Implementation Reference

  • The handler function for the 'hello' tool. Decorated with @server.tool(), it takes a name parameter (default 'World') and returns a formatted greeting message from the module config.
    @server.tool() def hello(name: str = "World") -> str: """ 返回问候消息 Args: name: 要问候的名称 Returns: str: 问候消息 """ message = self.config.get('message', 'Hello, {}!') return message.format(name)
Install Server

Other 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/gooboot/MCP-BOS'

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