Skip to main content
Glama

Visum Thinker MCP Server

MIT License
verify-operations.pyโ€ข1.16 kB
""" Verify the last two operations created """ import sys sys.path.append(r'C:\Users\lrosa\AppData\Local\Programs\Python\Python311\Lib\site-packages') import win32com.client # Connect to running Visum instance visum = win32com.client.Dispatch("Visum.Visum.250") # Check operations 578 and 579 print("\n๐Ÿ” Verifica delle ultime operazioni create:\n") try: op578 = visum.Procedures.Operations.ItemByKey(578) type578 = op578.AttValue("OPERATIONTYPE") print(f"Position 578: OPERATIONTYPE = {type578}") if type578 == 9: print(" โœ… CORRETTO: Initialize Assignment (Delete)") else: print(f" โŒ ERRORE: Dovrebbe essere 9, invece รจ {type578}") except Exception as e: print(f"Position 578: Errore - {e}") try: op579 = visum.Procedures.Operations.ItemByKey(579) type579 = op579.AttValue("OPERATIONTYPE") print(f"\nPosition 579: OPERATIONTYPE = {type579}") if type579 == 101: print(" โœ… CORRETTO: PrT Assignment") else: print(f" โŒ ERRORE: Dovrebbe essere 101, invece รจ {type579}") except Exception as e: print(f"Position 579: Errore - {e}") print("\n" + "="*50)

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