greet
Create personalized greeting messages by inputting a name. This tool simplifies generating friendly and customized greetings for interaction purposes on the Example MCP Server.
Instructions
Generate a friendly greeting message.
Args: name: The name of the person to greet
Returns: A personalized greeting message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}