Skip to main content
Glama
caretdev

InterSystems IRIS MCP Server

interoperability_production_queues

Retrieve and manage Interoperability Production queues in InterSystems IRIS MCP Server for monitoring and operational insights.

Instructions

Get Interoperability Production queues

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the 'interoperability_production_queues' tool, decorated with @server.tool for registration. It connects to the database, executes 'select * from Ens.Queue_Enumerate()' to fetch queue information, formats the results as a string, and returns it.
    @server.tool(description="Get Interoperability Production queues") async def interoperability_production_queues( ctx: Context, ) -> str: queues = [] db = ctx.db with db.cursor() as cur: sql = "select * from Ens.Queue_Enumerate()" cur.execute(sql) rows = cur.fetchall() queues = [", ".join([f"{cell}" for cell in row]) for row in rows] return "\n".join(queues)
  • The @server.tool decorator registers the 'interoperability_production_queues' tool with the MCP server.
    @server.tool(description="Get Interoperability Production queues")

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