经 AI Skill Hub 精选评估,开源MCP工具:AI coding tools for InterSystems IRIS 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
开源MCP工具:AI coding tools for InterSystems IRIS 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
开源MCP工具:AI coding tools for InterSystems IRIS 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/intersystems-community/iris-agentic-dev
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--mcp---ai-coding-tools-for-intersystems-iris": {
"command": "npx",
"args": ["-y", "iris-agentic-dev"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 开源MCP工具:AI coding tools for InterSystems IRIS 执行以下任务... Claude: [自动调用 开源MCP工具:AI coding tools for InterSystems IRIS MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__mcp___ai_coding_tools_for_intersystems_iris": {
"command": "npx",
"args": ["-y", "iris-agentic-dev"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Connect GitHub Copilot, Claude Code, or any MCP-compatible AI assistant directly to a live InterSystems IRIS instance. Your AI can compile, test, search, read, write, and debug ObjectScript without leaving the chat.
---
```bash
curl -fsSL https://github.com/intersystems-community/iris-agentic-dev/releases/latest/download/iris-agentic-dev-macos-arm64 \ -o /usr/local/bin/iris-agentic-dev && chmod +x /usr/local/bin/iris-agentic-dev xattr -d com.apple.quarantine /usr/local/bin/iris-agentic-dev 2>/dev/null
```bash
container = "myapp-iris" namespace = "MYAPP"
services: iris: image: containers.intersystems.com/intersystems/iris:2026.1 ports: ["4972:1972"] webgateway: image: containers.intersystems.com/intersystems/webgateway:2026.1 ports: ["52773:80"] # iris-agentic-dev scans port 52773 entrypoint: ["/bin/sh", "/init.sh"] volumes: ["./webgateway-init.sh:/init.sh:ro"] ```
Three non-obvious setup gotchas in fresh containers — see iris-vscode-objectscript skill for the complete working webgateway-init.sh.
json { "mcpServers": { "iris-agentic-dev": { "command": "iris-agentic-dev", "args": ["mcp"], "env": { "OBJECTSCRIPT_WORKSPACE": "${workspaceFolder}" } } } } ```
json { "mcpServers": { "iris-agentic-dev": { "command": "iris-agentic-dev", "args": ["mcp"], "env": { "IRIS_HOST": "iris.example.com", "IRIS_WEB_PORT": "52773", "IRIS_USERNAME": "_SYSTEM", "IRIS_PASSWORD": "SYS", "IRIS_NAMESPACE": "MYAPP" } } } }
For HTTPS or a non-root web gateway path:json "IRIS_SCHEME": "https", "IRIS_WEB_PORT": "443", "IRIS_WEB_PREFIX": "irisaicore" ```
| Variable | Default | Description |
|---|---|---|
IRIS_HOST | localhost | IRIS web gateway hostname |
IRIS_WEB_PORT | 52773 | Web gateway port |
IRIS_SCHEME | http | http or https |
IRIS_WEB_PREFIX | _(empty)_ | URL path prefix (e.g. irisaicore for /irisaicore/api/atelier/) |
IRIS_USERNAME | _SYSTEM | IRIS username |
IRIS_PASSWORD | SYS | IRIS password |
IRIS_NAMESPACE | USER | Default namespace |
IRIS_CONTAINER | _(empty)_ | Docker container name — required for Docker-dependent tools |
OBJECTSCRIPT_WORKSPACE | $PWD | Workspace root for .iris-agentic-dev.toml lookup |
IRIS_LOG_STORE_MAX | 50 | Max entries in the progressive disclosure log store. Oldest entry evicted when full. |
IRIS_LOG_TTL_MINUTES | 60 | Minutes before a log entry expires. Expired entries return LOG_EXPIRED. |
IRIS_INLINE_COMPILE | 20 | iris_compile: max distinct error/warning entries returned inline before truncation. |
IRIS_INLINE_SEARCH | 30 | iris_search: max result entries returned inline before truncation. |
IRIS_INLINE_INFO | 30 | iris_info (what=documents): max document entries returned inline before truncation. |
IRIS_INLINE_ERROR_LOGS | 20 | debug_get_error_logs: max log entries returned inline before truncation. |
Drop this file in your project root and commit it so teammates get the same setup automatically.
```toml
vscode-iris-agentic-dev-*.vsix from the releases pageCtrl+Shift+X) → ... → Install from VSIXThe extension reads your existing objectscript.conn and intersystems.servers config — no extra setup if you already use the InterSystems VS Code extensions.
---
If you use the InterSystems VS Code extensions, iris-agentic-dev reads your server definitions automatically. Your objectscript.conn should reference a named server so the full definition (including pathPrefix for non-standard gateways) is picked up:
"objectscript.conn": { "active": true, "server": "your-server-name" }
If iris-agentic-dev can't find your server: View > Output > iris-agentic-dev shows which servers were found and where.
Secure credential storage: If the InterSystems Server Manager extension is installed, iris-agentic-dev uses it to retrieve credentials from the OS keychain. On first use you'll be prompted for username and password. When the password prompt appears, click the 🔑 key icon before pressing Enter to store it in the keychain — subsequent VS Code restarts will then be fully silent. Pressing Enter without clicking 🔑 uses the password for the current session only. Server Manager is optional; without it iris-agentic-dev falls back to credentials in your server definition or MCP env vars.
---
该项目使用Rust编写,提供了一个开源的MCP工具,适合用于InterSystems IRIS开发,值得关注。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:开源MCP工具:AI coding tools for InterSystems IRIS 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | iris-agentic-dev |
| 原始描述 | 开源MCP工具:AI coding tools for InterSystems IRIS — single binary MCP server for VS Code Cop。⭐8 · Rust |
| Topics | mcprust |
| GitHub | https://github.com/intersystems-community/iris-agentic-dev |
| License | MIT |
| 语言 | Rust |
收录时间:2026-05-23 · 更新时间:2026-05-23 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端