apresenta
Generate structured mind maps for presentations on specific topics using Python-based MCP-Server integration, helping organize ideas visually.
Instructions
Gera um mapa mental para apresentações sobre um tema.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tema | Yes |
Implementation Reference
- server.py:45-45 (registration)Registers the 'apresenta' tool with the MCP server using the decorator.@mcp.tool(name="apresenta")
- server.py:46-55 (handler)The handler function for the 'apresenta' tool. It takes a theme string and returns a formatted mind map string for presentations on that theme.def apresenta(tema: str) -> str: """Gera um mapa mental para apresentações sobre um tema.""" return ( f"Apresentação sobre {tema}, focando somente nos tópicos abaixo:\n" f"- O que é\n" f"- Diferenças entre o {tema} e um conceito similar\n" f"- Exemplos de ferramentas\n" f"- Vantagens e desafios\n" f"- Casos de uso" )
- server.py:46-46 (schema)Type signature defining input (tema: str) and output (str) for the tool.def apresenta(tema: str) -> str: