hello-world
Sends a personalized greeting to the user by accepting a name as input. Part of the MCP Server Boilerplate for integrating custom tools with AI assistants like Claude or Cursor.
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"
}