Skip to main content
Glama
caretdev

InterSystems IRIS MCP Server

interoperability_production_stop

Stop an Interoperability Production in InterSystems IRIS with configurable timeout and force options to manage system processes.

Instructions

Stop an Interoperability Production

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timeoutNo
forceNo

Implementation Reference

  • The tool handler function interoperability_production_stop is defined and registered via @server.tool decorator inside the init function. It stops the production by calling Ens.Director.StopProduction with timeout (default 10) and force flag.
    @server.tool(description="Stop an Interoperability Production") async def interoperability_production_stop( ctx: Context, timeout: int = None, force: bool = False, ) -> str: logger.info("Sopping Interoperability Production.") iris = ctx.iris raise_on_error( iris, iris.classMethodString( "Ens.Director", "StopProduction", timeout or 10, force ), ) return "Stopped production"

Latest Blog Posts

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/caretdev/mcp-server-iris'

If you have feedback or need assistance with the MCP directory API, please join our Discord server