echo
Facilitates dynamic user input collection by echoing back submitted messages, demonstrating the MCP elicitation system's functionality.
Instructions
Echoes back the input!
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to echo |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "Message to echo",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}