inicial
Create a mind map to organize and visualize foundational knowledge on any topic, helping users grasp key concepts quickly and efficiently.
Instructions
Gera um mapa mental de conhecimentos iniciais sobre o tema.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tema | Yes |
Implementation Reference
- server.py:58-58 (registration)Decorator that registers the 'inicial' tool with the MCP server.@mcp.tool(name="inicial")
- server.py:59-66 (handler)The handler function for the 'inicial' tool. It takes a theme string and returns a formatted string with initial knowledge topics structured for a mind map.def inicial(tema: str) -> str: """Gera um mapa mental de conhecimentos iniciais sobre o tema.""" return ( f"Conhecimentos iniciais sobre {tema}, focando somente nos tópicos abaixo:\n" f"- Lembrar: liste definições, fatos e informações básicas.\n" f"- Compreender: explique conceitos, forneça exemplos e traduza ideias.\n" f"- Aplicar: descreva como o conhecimento pode ser usado na prática." )