AI coding tools for InterSystems IRIS — single binary MCP server for VS Code Copilot and Claude Code
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"iris-dev": {
"command": "cargo",
"args": [
"run",
"--",
"iris-dev"
]
}
}
}
Run in terminal:
claude mcp add iris-dev cargo run -- iris-dev
Add to .cursor/mcp.json:
{
"mcpServers": {
"iris-dev": {
"command": "cargo",
"args": [
"run",
"--",
"iris-dev"
]
}
}
}