revisa
Generate structured mind maps to review and organize content on any topic, enhancing comprehension and retention through visual organization.
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' tool with the MCP server using the @mcp.tool decorator specifying the name.@mcp.tool(name="revisa")
- server.py:22-29 (handler)The handler function that executes the 'revisa' tool logic, generating a formatted string for a mind map reviewing the given 'tema' with structured topics.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" )