Back to MCP directory
publicPublicdnsLocal runtime

mcp-server-iris

基于InterSystems IRIS的MCP协议服务器

article

README

🚀 mcp-server-iris:InterSystems IRIS 的 MCP 服务器

这是一个用于 InterSystems IRIS 数据库交互和自动化的服务器,基于 模型上下文协议 构建,能高效实现与数据库的交互及自动化操作。

🚀 快速开始

配置 Claude

以下是配置的 JSON 文件示例:

{
  "mcpServers": {
    "iris": {
      "command": "uvx",
      "args": [
        "mcp-server-iris"
      ],
      "env": {
        "IRIS_HOSTNAME": "localhost",
        "IRIS_PORT": "1972",
        "IRIS_NAMESPACE": "USER",
        "IRIS_USERNAME": "_SYSTEM",
        "IRIS_PASSWORD": "SYS"
      }
    }
  }
}

配置图示

ClaudeIRISInteroperability

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client