inicial
Generate a beginner-friendly mind map to visualize and organize foundational knowledge on any topic for clear understanding.
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-66 (handler)The handler function for the 'inicial' tool. It takes a 'tema' string parameter and returns a formatted string outlining initial knowledge topics (Remember, Understand, Apply) for generating a mental map.@mcp.tool(name="inicial") 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." )
- server.py:58-58 (registration)Registration of the 'inicial' tool using the @mcp.tool decorator with name 'inicial'.@mcp.tool(name="inicial")
- server.py:59-59 (schema)Type schema for the 'inicial' tool: input 'tema' as str, output str.def inicial(tema: str) -> str: