interoperability_production_update
Update interoperability production settings on InterSystems IRIS MCP Server with configurable timeout and force options to manage system behavior.
Instructions
Update Interoperability Production
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | ||
| timeout | No |
Implementation Reference
- The handler function decorated with @server.tool that implements the interoperability_production_update tool. It calls the IRIS class method to update the production, handling timeout and force parameters.@server.tool(description="Update Interoperability Production") async def interoperability_production_update( ctx: Context, timeout: int = None, force: bool = False, ) -> str: iris = ctx.iris raise_on_error( iris, iris.classMethodString("Ens.Director", "UpdateProduction", timeout, force), ) return "Production updated"