echo
Verify MCP server functionality by sending a message and receiving an immediate echo response. A simple test tool to ensure server communication is working correctly.
Instructions
Simple test tool that echoes back your input. Use to verify the MCP server is responding correctly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"message": {
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}