echo
Process and return a user-provided message with a 'Hello' prefix. Designed for integration testing and MCP client development within the MCP Hello World server environment.
Instructions
Echoes back a message with 'Hello' prefix
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The message to echo |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "The message to echo",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}