apresenta
Generate mind maps for presentations on any topic to organize ideas visually and structure content effectively.
Instructions
Gera um mapa mental para apresentações sobre um tema.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tema | Yes |
Implementation Reference
- server.py:45-45 (registration)Registration of the 'apresenta' tool using the @mcp.tool decorator.@mcp.tool(name="apresenta")
- server.py:46-55 (handler)The handler function for the 'apresenta' tool. It takes a theme string and returns a formatted string outlining presentation topics as a mind map structure.def apresenta(tema: str) -> str: """Gera um mapa mental para apresentações sobre um tema.""" return ( f"Apresentação sobre {tema}, focando somente nos tópicos abaixo:\n" f"- O que é\n" f"- Diferenças entre o {tema} e um conceito similar\n" f"- Exemplos de ferramentas\n" f"- Vantagens e desafios\n" f"- Casos de uso" )
- server.py:46-46 (schema)Input schema defined by the function signature: tema: str (input theme), returns str (mind map text).def apresenta(tema: str) -> str: