echo
Repeats input text for verification or testing purposes. Use within the MCP-CEP server to validate data or simulate responses for Brazilian postal code queries.
Instructions
Repete o texto enviado.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| texto | Yes |
Implementation Reference
- cep.py:6-9 (handler)The handler function for the 'echo' tool. It is registered via the @mcp.tool() decorator and echoes the input text with a Portuguese prefix.@mcp.tool() async def echo(texto: str) -> str: """Repete o texto enviado.""" return f"Você disse: {texto}"