hello
Generate personalized greetings by providing a name. This tool creates custom hello messages for use in applications and demonstrations.
Instructions
A simple greeting tool that says hello
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name to greet |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name to greet",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}