Skip to main content
Glama

Visum Thinker MCP Server

MIT License
clear-win32com-cache.pyโ€ข1.09 kB
""" Script per pulire la cache win32com che causa errori con Visum """ import shutil import os import tempfile # Trova la directory gen_py nella cache win32com gen_py_path = os.path.join(tempfile.gettempdir(), 'gen_py') print("๐Ÿงน Pulizia cache win32com...") print(f"๐Ÿ“‚ Percorso: {gen_py_path}") if os.path.exists(gen_py_path): try: shutil.rmtree(gen_py_path) print("โœ… Cache pulita con successo!") print("๐Ÿ’ก Ora puoi riaprire il progetto Visum") except Exception as e: print(f"โŒ Errore durante la pulizia: {e}") print("๐Ÿ’ก Prova a chiudere tutte le istanze di Python/Visum e riprova") else: print("โš ๏ธ Directory gen_py non trovata") print(f"๐Ÿ’ก Cerca manualmente in: {tempfile.gettempdir()}") # Mostra anche altre possibili location import win32com win32com_path = os.path.dirname(win32com.__file__) alt_gen_py = os.path.join(win32com_path, 'gen_py') print(f"\n๐Ÿ“ Altra possibile location: {alt_gen_py}") if os.path.exists(alt_gen_py): print(" Trovata! Vuoi pulire anche questa? (esegui manualmente)")

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/multiluca2020/visum-thinker-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server