revisa
Generate a mind map to review content on any topic, helping organize ideas visually for better retention and understanding.
Instructions
Gera um mapa mental para revisão de conteúdo sobre um tema.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tema | Yes |
Implementation Reference
- server.py:21-21 (registration)Registers the revisa function as an MCP tool with the name 'revisa' using the FastMCP decorator.@mcp.tool(name="revisa")
- server.py:22-29 (handler)The handler function for the 'revisa' tool. Takes a theme string and returns a formatted mind map prompt for reviewing content on that theme, structured with main topic, subtopics, details, and examples.def revisa(tema: str) -> str: """Gera um mapa mental para revisão de conteúdo sobre um tema.""" return ( f"Revisão de {tema}, focando somente nos tópicos abaixo:\n" f"- Tópico principal: {tema}\n" f"- Subtópicos como ramos principais\n" f"- Detalhes e exemplos como ramos secundários" )
- server.py:22-22 (schema)Input schema: tema (str), Output: str. Defined via type annotations on the handler function.def revisa(tema: str) -> str: