hello_world
Greet users by name using a simple Model Context Protocol tool on the Bootstrap MCP Server, designed for testing and basic interaction.
Instructions
A simple hello world tool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name to greet |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name to greet",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}