ODEI MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
git clone https://github.com/odei-ai/mcp-odei.git
cd mcp-odei
npm install
npm run build
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add -e "ODEI_API_KEY=${ODEI_API_KEY}" odei-mcp -- node "<FULL_PATH_TO_MCP_ODEI>/dist/index.js"

Replace <FULL_PATH_TO_MCP_ODEI>/dist/index.js with the actual folder you prepared in step 1.

Required:ODEI_API_KEY
README.md

MCP access to ODEI world model queries, guardrails, and governed retrieval.

@odei/mcp-server

MCP access to ODEI world model queries, guardrails, and governed retrieval.

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) 18,749+
Public projection 18,702 nodes
Node types 91
Relationship types 36
Domains 7
Daemons healthy 17/17
Grok x ODEI exchanges 9,993
Insights shipped to code 13
Uptime 18m
Latest signal Guardian Layer is Code-Level Validation, Not a Graph Node — Minimum Seed Correction

Auto-updated 3x/day · 2026-03-22 15:56 UTC

Why It Exists

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.

Quick Start

Run locally

git clone https://github.com/odei-ai/mcp-odei.git
cd mcp-odei
npm install
npm run build
node dist/index.js

Claude Desktop

{
  "mcpServers": {
    "odei": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-odei/dist/index.js"],
      "env": {
        "ODEI_API_KEY": "your-key"
      }
    }
  }
}

Core Tools

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

Example

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.

Authentication

Authenticated endpoints use:

X-Api-Key: <your key>

Public projection surfaces may be used for lighter, unauthenticated flows depending on configuration.

Related Surfaces

License

MIT

Tools (4)

odei_world_model_queryQuery the world model using structured or free-text intent
odei_guardrail_checkEvaluate an action against ODEI guardrails before execution
odei_world_model_signalScore claims and signals against known context
odei_smart_contract_auditRun a graph-informed audit workflow for onchain artifacts

Environment Variables

ODEI_API_KEYrequiredAPI key for authenticated access to ODEI services

Configuration

claude_desktop_config.json
{
  "mcpServers": {
    "odei": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-odei/dist/index.js"],
      "env": {
        "ODEI_API_KEY": "your-key"
      }
    }
  }
}

Try it

What are the currently active strategic objectives?
Check if the following action is safe according to ODEI guardrails: [insert action description]
Audit the smart contract at address 0x123... for potential vulnerabilities.
Score the following claim against the ODEI world model: [insert claim]

Frequently Asked Questions

What are the key features of ODEI MCP Server?

Structured world model queries. AI safety guardrail evaluation. Signal and confidence scoring. Governed retrieval over graph-native memory. Graph-informed smart contract auditing.

What can I use ODEI MCP Server for?

Validating agent actions against safety policies before execution. Retrieving structured context instead of relying on raw chat history. Performing security audits on onchain smart contract artifacts. Scoring the reliability of information claims against a governed knowledge graph.

How do I install ODEI MCP Server?

Install ODEI MCP Server by running: git clone https://github.com/odei-ai/mcp-odei.git && cd mcp-odei && npm install && npm run build

What MCP clients work with ODEI MCP Server?

ODEI MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep ODEI MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare