hello-world
Generate personalized greetings by providing a user name. This tool is part of the MCP Server Boilerplate, designed to integrate with AI assistants for creating custom tools.
Instructions
Say hello to the user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the user |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the user",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}