hello-world
Generate a personalized greeting message by providing your name. This tool creates custom hello messages for users interacting with the MCP server boilerplate.
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"
}