echo
Sends back the input text as received, enabling quick validation and testing of data transmission within the GitHub Integrated MCP Server environment.
Instructions
Echo back the input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Text to echo back |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "Text to echo back",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}