fund.echo
Test communication with the Fund MCP Server by sending a message and receiving it back, ensuring proper connection to the financial fund knowledge base.
Instructions
Echo back a message. Example interface for scaffold.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Text to echo back |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Text to echo back",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}