intermediario
Generate intermediate-level mind maps to organize and visualize knowledge on any topic for better understanding and retention.
Instructions
Gera um mapa mental de conhecimentos intermediários sobre o tema.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tema | Yes |
Implementation Reference
- server.py:69-69 (registration)Registers the 'intermediario' tool using the MCP decorator.@mcp.tool(name="intermediario")
- server.py:70-77 (handler)The main handler function for the 'intermediario' tool. It takes a 'tema' string parameter and returns a formatted string prompt for generating intermediate-level mental maps on the topic.def intermediario(tema: str) -> str: """Gera um mapa mental de conhecimentos intermediários sobre o tema.""" return ( f"Conhecimentos intermediários sobre {tema}, focando somente nos tópicos abaixo:\n" f"- Analisar: identifica padrões, relacione ideias e compare conceitos.\n" f"- Avaliar: julga a eficácia, valide argumentos e critique resultados.\n" f"- Criar: propõe novas soluções, crie projetos ou sugira melhorias." )