echo_tool
Test and verify input messaging within MCP Ahrefs by echoing back received data. Demonstrates basic MCP tool functionality with automated logging and exception handling for reliable integration checks.
Instructions
Echo back the input message.
This is a simple example tool that demonstrates basic MCP tool functionality.
It will be automatically decorated with SAAGA decorators for exception handling
and logging.
Args:
message: The message to echo back
Returns:
The echoed message with a prefix
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"title": "Message",
"type": "string"
}
},
"required": [
"message"
],
"title": "echo_toolArguments",
"type": "object"
}