get_contam_bridge_session
Inspect metadata and current state of active ContamX bridge sessions for airflow and contaminant transport modeling.
Instructions
Use this when you want to inspect the metadata or last-known state of an active ContamX bridge session.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes |
Implementation Reference
- contam-mcp/src/server.js:2346-2359 (handler)Handler for get_contam_bridge_session which retrieves session details from the bridgeSessions map.
"get_contam_bridge_session", "Use this when you want to inspect the metadata or last-known state of an active ContamX bridge session.", { sessionId: z.string() }, async ({ sessionId }) => { const session = bridgeSessions.get(sessionId); if (!session) { throw new Error(`Bridge session not found: ${sessionId}`); } return toolResponse("Fetched ContamX bridge session state.", session.getSummary()); } );