Integrations

IIO works with your existing AI stack. Plug governance in — don't replace anything.

IIO is the governance layer

Not another AI platform — a cooperative layer that wraps any agent framework with policy, HITL gates, and compliance.
Works with Claude, LangChain, AutoGen, Vercel AI, GitHub Actions, and any OpenAI-compatible client.

64
MCP Tools
4
A2A Skills

Protocol Compatibility

OpenAI API
MCP (Anthropic)
A2A (Google)
OpenTelemetry
ISO 42001
EU AI Act
GDPR
LangChain Tools
GitHub Actions
Vercel AI SDK
AutoGen
PyPI SDK
Live   In Build   Planned
AI Agent Frameworks
Claude / OpenCode
MCP Client
● Live

IIO exposes 64 governance tools via MCP. Claude and OpenCode can check policies, approve gates, and query the architecture graph.

claude_desktop_config.json → iio-mcp-server.py
LangChain / LangGraph
Python Tools
⚙ In Build

IIO Skills as LangChain Tools. Policy check, HITL gate, layer graph query, and compliance assessment — all usable in any ReAct agent.

from iio_langchain import create_iio_tools
Any A2A Agent
A2A Protocol
⚙ In Build

IIO is an A2A-compatible agent. AutoGen, CrewAI, Gemini agents can call IIO skills via the Google Agent-to-Agent protocol.

POST /a2a/tasks/send → governed execution
Vercel AI SDK
TypeScript
Planned

IIO is OpenAI-compatible. Works today via base_url swap. Native @iio/governance SDK coming Q3 2026.

createOpenAI({ baseURL: 'https://api.iio.space/v1' })
API Compatibility

OpenAI-Compatible — Drop-in replacement, any client

# Python — OpenAI SDK
import openai
client = openai.OpenAI(
    base_url="https://api.iio.space/v1",
    api_key="iio-dev-your-key"
)
response = client.chat.completions.create(
    model="qwen2.5:7b",
    messages=[{"role": "user", "content": "Hello"}]
)

# TypeScript — Vercel AI SDK (today, no SDK needed)
import { createOpenAI } from '@ai-sdk/openai'
const iio = createOpenAI({ baseURL: 'https://api.iio.space/v1', apiKey: 'iio-dev-...' })

# LangChain
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(openai_api_base="https://api.iio.space/v1", openai_api_key="iio-dev-...")
CI/CD & DevOps
GitHub Actions
Reusable Actions
⚙ In Build

Add IIO governance to any GitHub workflow. Policy check and layer graph validation as reusable Actions.

- uses: iio/policy-check@v1
GitLab CI
Pipeline
● Live

IIO includes a .gitlab-ci.yml with validate + test + gate stages. Drop it into any GitLab project.

iio/.gitlab-ci.yml → copy to your project
Observability
OpenTelemetry
CNCF Standard
⚙ In Build

IIO exports governance metrics via OTLP. Send to Grafana Cloud, Jaeger, Prometheus, Datadog, or any OTEL backend.

OTEL_EXPORTER_OTLP_ENDPOINT=... python3 iio-otel-exporter.py
Grafana
Metrics Dashboard
● Live

IIO ships with Grafana dashboards for governance KPIs, AI Hub uptime, and HITL gate metrics.

grafana.iio.space → governance dashboard
Compliance & Standards
ISO 42001
AI Management System
● 82% — PASS

IIO is 82% ISO 42001 compliant. Compliance map, control catalog, and evidence generation are built-in.

specs/governance/ISO-42001-COMPLIANCE-MAP.md
EU AI Act
Regulation
● Limited Risk — COMPLIANT

IIO is EU AI Act compliant (Limited Risk classification). Transparency, post-market monitoring, and DPA templates included.

specs/governance/EU-AI-ACT-COMPLIANCE-MAP.md
GDPR
Data Protection
● Compliant

DPA template (Art. 28), data retention policy, sub-processor list, and breach notification procedure included.

DPA-TENANT-TEMPLATE.md → ready for tenants
NIST AI RMF
Risk Framework
● 75% Coverage

GOVERN, MAP, MEASURE, MANAGE functions implemented. Bias framework, risk register, and model cards included.

specs/governance/NIST-AI-RMF-MAPPING.md
Extend IIO

Plugin Model — Build on IIO

# 1. Write a SKILL
mkdir my-skill && cat > my-skill/SKILL.md << EOF
---
name: my-skill
description: My custom IIO skill
---
# My Skill
...implement here...
EOF

# 2. Register in skill-registry.yaml
# 3. IIO discovers it automatically:
bash iio/specs/scripts/scan-skills.sh  # → shows your skill

# 4. Use via MCP from any agent:
# Claude/OpenCode sees your skill automatically
Missing an integration? Open an issue · Get API Key · API Reference