hello
Generate a greeting message within the Desmos MCP Server environment for mathematical visualization and analysis workflows.
Instructions
A simple tool that returns a greeting.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | World |
Implementation Reference
- src/main.py:76-79 (handler)The 'hello' tool implementation: a simple greeting function that takes an optional 'name' parameter (defaults to 'World') and returns a formatted greeting string. Registered via @mcp.tool() decorator.@mcp.tool() def hello(name: str = "World") -> str: """A simple tool that returns a greeting.""" return f"Hello, {name}!"