Skip to main content
Glama

Visum Thinker MCP Server

MIT License
verify-578-579.pyโ€ข1.31 kB
""" Direct verification of operations 578 and 579 in Visum Run this in base environment with pywin32 installed """ import win32com.client visum = win32com.client.Dispatch("Visum.Visum.250") print("\n" + "="*60) print("VERIFICA OPERAZIONI 578-579") print("="*60 + "\n") for pos in [575, 576]: try: op = visum.Procedures.Operations.ItemByKey(pos) op_type = op.AttValue("OPERATIONTYPE") type_names = { 9: "Initialize Assignment (DELETE)", 100: "PuT Assignment", 101: "PrT Assignment" } type_name = type_names.get(op_type, f"Unknown ({op_type})") print(f"Position {pos}:") print(f" OPERATIONTYPE = {op_type}") print(f" Nome: {type_name}") if pos == 578: if op_type == 9: print(" โœ… CORRETTO - Initialize Assignment") else: print(f" โŒ ERRORE - Dovrebbe essere 9, รจ {op_type}") elif pos == 579: if op_type == 101: print(" โœ… CORRETTO - PrT Assignment") else: print(f" โŒ ERRORE - Dovrebbe essere 101, รจ {op_type}") print() except Exception as e: print(f"Position {pos}: ERRORE - {e}\n") print("="*60)

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