greet
Generate personalized greetings by name using this tool from the MCP Boilerplate Server, designed to simplify user interaction with basic MCP server functionality.
Instructions
Greet a person by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}