InterSystems IRIS MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| IRIS_PORT | No | The port number for the InterSystems IRIS database server | 1972 |
| IRIS_HOSTNAME | No | The hostname of the InterSystems IRIS database server | localhost |
| IRIS_PASSWORD | No | The password for authenticating with the InterSystems IRIS database | SYS |
| IRIS_USERNAME | No | The username for authenticating with the InterSystems IRIS database | _SYSTEM |
| IRIS_NAMESPACE | No | The namespace to use in the InterSystems IRIS database | USER |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| interoperability_production_createC | Create an Interoperability Production |
| interoperability_production_statusD | Status of an Interoperability Production |
| interoperability_production_startD | Start an Interoperability Production |
| interoperability_production_stopD | Stop an Interoperability Production |
| interoperability_production_recoverC | Recover an Interoperability Production |
| interoperability_production_needsupdateA | Check if an Interoperability Production needs update |
| interoperability_production_updateD | Update Interoperability Production |
| interoperability_production_logsD | Get Interoperability Production logs |
| interoperability_production_queuesC | Get Interoperability Production queues |
| execute_sqlC | Execute an SQL query on the Server |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
The tools are clearly distinct: one for SQL execution and the rest for various operations on Interoperability Productions. Each production tool has a unique verb (create, logs, status, etc.) with no overlap.
Nine production tools follow the consistent pattern 'interoperability_production_<verb>', but 'execute_sql' breaks this pattern by lacking the domain prefix and using a different verb format. Minor inconsistency.
Ten tools is well-scoped for a server focused on InterSystems IRIS, covering SQL execution and comprehensive production lifecycle management without being overwhelming.
Production management is thorough (create, update, start, stop, status, logs, queues, etc.), but missing a delete/remove tool for productions. SQL is limited to execution only, with no schema introspection tools.