The Semantic Network for AI Agents
Typed capabilities. Governed routing. Federated trust.
AI agents are trapped.
Point-to-point
Every tool is a hardcoded config
No governance
Who can invoke what? No one knows.
No federation
Agents can't cross boundaries
MCP gave AI a protocol. Agents need a network.
The InterRealm Stack
AGENTS
Claude, GPT, Llama, your models
SEMANTIC ARTIFACTS
Typed entities, bound prompts, governed tools
INTERREALM
Realms, routing, federation, policy
RUNTIME BINDINGS
MCP servers, HTTP APIs, cross-realm, internal
You control the infrastructure. We define the semantics.
◆ TYPED CAPABILITIES
Semantic Artifacts make entities first-class. Prompts and tools bind to schemas, not loose JSON.
prompts:
- name: extract-invoice
output:
entity: Invoice # ← typed◆ GOVERNED ROUTING
Agents request capabilities, not endpoints. Realms resolve, enforce policy, and audit.
◆ FEDERATED TRUST
Realms federate with other realms. Cross-org AI without custom integration.
See it in action
DEFINE (Semantic Artifact)
entities:
- name: Invoice
schema:
type: object
properties:
vendor: string
amount: number
prompts:
- name: extract-invoice
output:
entity: InvoiceINVOKE (Agent SDK)
const realm = await
InterRealm.connect(
"realm:acme:finance"
);
// Discover typed tools
const tools = await
realm.discoverTools();
// Invoke semantically
const invoice = await
realm.invoke(
"invoice.extract",
{ document: pdf }
);
// SDK handles routingHow InterRealm compares
| MCP | LangChain | InterRealm | |
|---|---|---|---|
| Unit | Tool/Prompt | Tool/Chain | Semantic Artifact |
| Typing | Loose JSON | Pydantic | Entity-bound |
| Discovery | Static | Code | Dynamic + governed |
| Routing | Point-point | In-process | Realm-based |
| Federation | Native | ||
| Governance | Built-in | ||
| MCP Compatible | Partial | Bidirectional |
InterRealm extends MCP, it doesn't replace it.
Project Status
Need enterprise-grade?
InterRealm is the open spec. Realmtrix Edge is the enterprise platform with managed realms, LDAP/OIDC, audit dashboards, and dedicated support.
Learn More