hello-world
Generate personalized hello messages by providing a user name. This tool helps create customized greetings for integration with AI assistants and applications.
Instructions
Say hello to the user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the user |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the user",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}