echo_message
Echoes back a message with optional uppercase conversion and metadata. Test MCP protocol functionality by sending a message and receiving echo response.
Instructions
Echo back a message with optional formatting.
Args: message: The message to echo back uppercase: Whether to convert the message to uppercase ctx: MCP context
Returns: Complete echo response with metadata
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | ||
| uppercase | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| original_message | Yes | The original message sent | |
| echoed_message | Yes | The echoed message (possibly transformed) | |
| uppercase_applied | Yes | Whether uppercase transformation was applied | |
| message_length | Yes | Length of the original message | |
| timestamp | Yes | ISO 8601 timestamp of the echo operation |