echo
Return a provided message as a response using the Simple MCP Server. Use this tool to validate message transmission or test integration with the MCP protocol.
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"
}