intermediario
Create a structured intermediate-level mind map to visually organize and understand key concepts on a specific topic using Python-based MCP-Server integration.
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.tool decorator with name="intermediario".@mcp.tool(name="intermediario")
- server.py:70-77 (handler)The handler function for the 'intermediario' tool, which generates a mind map string for intermediate knowledge levels on the input theme 'tema'.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." )