hello_tool
Generate personalized greetings by inputting a name into the 'hello_tool' on the MCP Server Starter, designed for efficient development and deployment of Model Context Protocol servers.
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"
}