Agent Plugins Marketplace
All plugins

iris-dev

v0.2.0

MCP server and skills for InterSystems IRIS development — 20 tools for live IRIS interaction plus 21 validated coding skills. Single binary, no Python required.

Claude Code3 Skills1 MCP serverstdio

By InterSystems CorporationLicense: MIT27 GitHub starsUpdated last month

Directory evidence

Runtimes
Claude Code
Parsed components
4 skill or MCP entries
Source updated
Aug 7, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install iris-dev for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install iris-dev@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/intersystems-community/iris-agentic-dev

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

iris-dev/
├── .claude-plugin/plugin.json
├── skills/iris-coverage-run/SKILL.md
├── skills/iris-coverage-setup/SKILL.md
├── skills/pyprod/SKILL.md
└── .mcp.json

Included Skills3

iris-coverage-runskills/iris-coverage-run/SKILL.md

Measure ObjectScript line coverage using %Monitor.System.LineByLine. Wraps a %UnitTest.Manager.RunTest() call, collects per-class hit/total counts, prints a coverage table. Prerequisite: iris-coverage-setup (bbsiz=4096, IRIS restarted).

iris-coverage-setupskills/iris-coverage-setup/SKILL.md

Enable the IRIS line-by-line monitor (bbsiz CPF parameter). Run once per container before measuring ObjectScript test coverage. Verifies $zu(84) is functional and diagnoses build incompatibility.

pyprodskills/pyprod/SKILL.md

Use when creating or modifying InterSystems IRIS interoperability production components in Python — Business Services, Business Processes, Business Operations, Adapters, Messages, or Production definitions.

MCP servers1

iris-devstdio
command
iris-dev
args
mcp
env.IRIS_HOST
${IRIS_HOST}
env.IRIS_WEB_PORT
${IRIS_WEB_PORT}
env.IRIS_NAMESPACE
${IRIS_NAMESPACE}
env.IRIS_USERNAME
${IRIS_USERNAME}
env.IRIS_PASSWORD
${IRIS_PASSWORD}
env.IRIS_WEB_PREFIX
${IRIS_WEB_PREFIX}

Plugin manifests1

.claude-plugin/plugin.json
{
  "name": "iris-dev",
  "description": "MCP server and skills for InterSystems IRIS development — 20 tools for live IRIS interaction plus 21 validated coding skills. Single binary, no Python required.",
  "version": "0.2.0",
  "author": {
    "name": "InterSystems Corporation"
  },
  "homepage": "https://github.com/intersystems-community/iris-agentic-dev",
  "license": "MIT",
  "keywords": [
    "intersystems",
    "iris",
    "objectscript",
    "mcp",
    "skills",
    "interoperability"
  ],
  "mcpServers": {
    "iris-dev": {
      "command": "iris-dev",
      "args": [
        "mcp"
      ],
      "env": {
        "IRIS_HOST": "${IRIS_HOST}",
        "IRIS_WEB_PORT": "${IRIS_WEB_PORT}",
        "IRIS_NAMESPACE": "${IRIS_NAMESPACE}",
        "IRIS_USERNAME": "${IRIS_USERNAME}",
        "IRIS_PASSWORD": "${IRIS_PASSWORD}",
        "IRIS_WEB_PREFIX": "${IRIS_WEB_PREFIX}"
      }
    }
  },
  "hooks": {
    "PostToolUse": [
      {
        "matcher": "Write|Edit",
        "hooks": [
          {
            "type": "command",
            "command": "${CLAUDE_PLUGIN_ROOT}/scripts/compile-hook.sh"
          }
        ]
      }
    ],
    "FileChanged": [
      {
        "matcher": "*.cls|*.mac|*.inc",
        "hooks": [
          {
            "type": "command",
            "command": "${CLAUDE_PLUGIN_ROOT}/scripts/compile-hook.sh"
          }
        ]
      }
    ]
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[iris-dev on Agent Plugins Marketplace](https://pluginsmp.com/plugins/iris-dev)