get_visum_status
Check the current status of the Visum COM connection and active session to ensure seamless communication and session management within the Visum Thinker MCP Server.
Instructions
Get the current status of Visum COM connection and active session
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/visum-controller.ts:1084-1098 (handler)The handler function for getting the Visum status, returning demo mode status, COM availability, current model path, configured directories, and custom Visum path.getStatus(): { demoMode: boolean; comAvailable: boolean | null; currentModel: string | null; directories: { log: string; temp: string; work: string } | null; customPath: string | null; } { return { demoMode: this.demoMode, comAvailable: this.comAvailable, currentModel: this.currentModel, directories: this.visumLogDirs, customPath: this.customVisumPath }; }