hello-world
Generate a personalized greeting message by providing a user's name to demonstrate basic MCP server tool functionality.
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"
}