problemas
Create a visual problem analysis mind map by entering a topic. Helps organize and understand issues related to the theme effectively.
Instructions
Gera um mapa mental de análise de problemas relacionados ao tema.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tema | Yes |
Implementation Reference
- server.py:32-42 (handler)The handler function for the 'problemas' tool, decorated with @mcp.tool(name="problemas"). It takes a 'tema' parameter and returns a formatted string outlining problem analysis topics.@mcp.tool(name="problemas") def problemas(tema: str) -> str: """Gera um mapa mental de análise de problemas relacionados ao tema.""" return ( f"Análise de problemas sobre {tema}, focando somente nos tópicos abaixo:\n" f"- Definição do problema\n" f"- Possíveis causas\n" f"- Soluções propostas\n" f"- Recursos necessários\n" f"- Etapas de implementação de possíveis soluções" )
- server.py:32-32 (registration)Registration of the 'problemas' tool via the FastMCP decorator.@mcp.tool(name="problemas")
- server.py:33-34 (schema)Input schema (tema: str) and output (str), with docstring describing the tool's purpose.def problemas(tema: str) -> str: """Gera um mapa mental de análise de problemas relacionados ao tema."""