hello_tool
Send personalized greetings by inputting a name. Built for the MCP Server Starter, this tool integrates with TypeScript-based Model Context Protocol servers for streamlined development.
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"
}