echo
Send a message to receive an immediate reply using the mcp-flyin server. Designed to verify communication and test message handling in custom protocols.
Instructions
Echo back the input message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to echo back |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Message to echo back",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}