hello_world
Generate a friendly greeting message using the Fifth Elephant MCP Server's demonstration tool for basic communication functions.
Instructions
Returns a friendly greeting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- main.py:8-11 (handler)Registration and handler implementation for the 'hello_world' tool using the FastMCP decorator.
@mcp.tool() def hello_world() -> str: """Returns a friendly greeting.""" return "hello world"