ODEI MCP Server: Give Claude a Constitutional World Model
The ODEI MCP server connects Claude Desktop to a production constitutional knowledge graph. Here's the complete setup guide.
What You Get
Three tools available to Claude after setup:
-
odei_world_model_query— Query 91-node knowledge graph across 6 semantic domains -
odei_guardrail_check— Constitutional validation (APPROVED/REJECTED/ESCALATE) -
odei_world_model_signal— Instant agent trust scores and context signals
Setup in 2 Minutes
Step 1: Install
npm install -g @odei/mcp-server
Or use npx (no install needed):
npx @odei/mcp-server
Step 2: Configure Claude Desktop
Edit ~/.claude/mcp.json (create if doesn't exist):
{
"mcpServers": {
"odei": {
"command": "npx",
"args": ["@odei/mcp-server"],
"env": {
"ODEI_API_KEY": "your-key-here"
}
}
}
}
Step 3: Get Your API Key
Register at https://api.odei.ai/integrate/
Free tier available for basic usage.
Step 4: Restart Claude Desktop
The ODEI tools will appear in Claude's tool list.
Usage Examples
Query the World Model
Claude, what does ODEI know about AI safety?
Claude calls odei_world_model_query with searchTerm: "AI safety" and returns structured graph data.
Constitutional Validation
Before I transfer 500 USDC, check if this action is approved.
Claude calls odei_guardrail_check and returns APPROVED/REJECTED/ESCALATE with reasoning.
Trust Score
What's the trust score for AgentX?
Claude calls odei_world_model_signal with signalType: "agent_score".
Without an API Key
The MCP server works without a key for basic queries — it falls back to the public endpoints. Add a key for full access and higher rate limits.
What the World Model Contains
The 91-node Neo4j graph covers:
- FOUNDATION (25 nodes) — Identity, values, governance
- VISION (12 nodes) — Strategic goals
- STRATEGY (16 nodes) — Active plans
- TACTICS (8 nodes) — Current tasks
- EXECUTION (11 nodes) — In-progress work
- TRACK (19 nodes) — Metrics and signals
Running in production since January 2026.
Source
- MCP Server: https://github.com/odei-ai/mcp-odei
- API: https://api.odei.ai
- Virtuals ACP: https://app.virtuals.io/acp/agent-details/3082
Top comments (0)