greet
Generate personalized greetings by providing a name input. This tool creates custom welcome messages for users in conversational interfaces.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Implementation Reference
- server.py:7-9 (handler)The main handler function for the 'greet' tool. It takes a 'name' parameter and returns a personalized greeting string. The @mcp.tool decorator registers it as an MCP tool.@mcp.tool def greet(name: str) -> str: return f"Hello, {name}!"