echo
Receives a message and returns it as output, enabling testing and verification of input-output functionality in the EpicMe MCP server's toolset.
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"
}