hello_tool
Generate personalized greetings by inputting a name. Integrated with the MCP Server Starter, this tool simplifies user interactions in a TypeScript-based MCP server environment.
Instructions
Hello tool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the person to greet |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the person to greet",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}