echo
Send a message and receive it back to verify connectivity and functionality with the Algorand MCP Server for blockchain interactions.
Instructions
Echo back the provided message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The message to echo back |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "The message to echo back",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}