DEV Community

Anton Illarionov
Anton Illarionov

Posted on

ODEI MCP Server: 3 Tools That Transform How Claude Handles Long Projects

ODEI MCP Server: 3 Tools That Will Change How Claude Handles Long-Term Projects

After using the ODEI MCP server for weeks, these three tools made the biggest difference.

Setup (30 seconds)

{
  "mcpServers": {
    "odei": {
      "command": "npx",
      "args": ["@odei/mcp-server"]
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

That's it. Three new tools appear in Claude.

Tool 1: odei_world_model_query — Never Start From Scratch

The problem: Every Claude session starts from zero. "What was I working on?"

The solution: At the start of every session, query the world model:

Claude, use odei_world_model_query to get context on my current strategic priorities
Enter fullscreen mode Exit fullscreen mode

Claude calls odei_world_model_query with domain: STRATEGY and returns your active initiatives — pulled from the 91-node knowledge graph that persists across sessions.

Impact: Sessions resume in 30 seconds instead of 5 minutes of re-context.

Tool 2: odei_guardrail_check — Never Execute Wrong

The problem: Claude sometimes suggests actions that are duplicates, unauthorized, or stale.

The solution: Before any consequential action, validate:

Before we send this email to the entire list, use odei_guardrail_check to verify this action is safe
Enter fullscreen mode Exit fullscreen mode

Claude calls odei_guardrail_check and checks 7 constitutional layers. If it's a duplicate (you already sent this email), it returns REJECTED with explanation.

Impact: Zero duplicate emails, zero unauthorized deployments.

Tool 3: odei_world_model_signal — Instant Context

The problem: You reference an entity and Claude doesn't know its current status.

The solution:

Use odei_world_model_signal with agent_score for project-alpha to understand its current health
Enter fullscreen mode Exit fullscreen mode

Claude calls odei_world_model_signal and returns a 0-100 trust/health score based on current graph data.

Impact: Claude has real-time context without loading the full world model.

The Combined Pattern

The most powerful combination:

  1. Session start: odei_world_model_query → inject current context
  2. Before each action: odei_guardrail_check → prevent mistakes
  3. Entity references: odei_world_model_signal → get current state

In practice, this makes Claude sessions feel like they have actual memory and governance.


Get API key: https://api.odei.ai/integrate/ | Source: https://github.com/odei-ai/mcp-odei

Top comments (0)