ODEI exposes a constitutional world model through the Model Context Protocol so AI clients can work with structured context instead of raw chat history.
This server gives MCP-compatible tools access to:
- world model queries
- guardrail checks
- signal and confidence scoring
- governed retrieval over ODEI's graph-native memory layer
Live System Status
Metric Value Graph nodes (production) 19,366+ Public projection 19,316 nodes Node types 91 Relationship types 36 Domains 7 Daemons healthy 18/18 Grok x ODEI exchanges 10,288 Insights shipped to code 94 Public graph as of 2026-04-14 05:40 UTC Latest signal Signal Triage Is Constitutional Policy Enforcement, Not Bayesian Inference Auto-updated 3x/day · 2026-04-14 07:58 UTC
Most agent clients can call tools, but they still lack:
- persistent structured memory
- explicit policy checks before action
- retrieval over relationships, not just text similarity
@odei/mcp-server connects those clients to ODEI's governed architecture.
git clone https://github.com/odei-ai/mcp-odei.git
cd mcp-odei
npm install
npm run build
node dist/index.js{
"mcpServers": {
"odei": {
"command": "node",
"args": ["/absolute/path/to/mcp-odei/dist/index.js"],
"env": {
"ODEI_API_KEY": "your-key"
}
}
}
}| Tool | Purpose |
|---|---|
odei_world_model_query |
Query the world model using structured or free-text intent |
odei_guardrail_check |
Evaluate an action against ODEI guardrails before execution |
odei_world_model_signal |
Score claims and signals against known context |
odei_smart_contract_audit |
Run a graph-informed audit workflow for onchain artifacts |
Ask your MCP client:
What are the currently active strategic objectives?
The server routes that request through ODEI's retrieval and policy surfaces instead of relying on an empty session window.
Authenticated endpoints use:
X-Api-Key: <your key>
Public projection surfaces may be used for lighter, unauthenticated flows depending on configuration.
- odei.ai for research and thesis
- api.odei.ai for docs and production APIs
- memory for the memory architecture
- research for the research program
MIT