Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides cross-session memory for Claude Code by extracting structured handoffs at session end and retrieving relevant past context at session start.

README.md

Eywa MCP

Cross-session memory for Claude Code (MCP server + CLI).

![Build](#) ![PyPI](#) ![License](LICENSE)

The Problem

Claude Code sessions are ephemeral. Context is lost between sessions, so you start fresh each time and re-explain what you were working on.

For heavy Claude Code users with hundreds of sessions, that context reset becomes a major productivity drain.

The Solution

Eywa extracts a structured handoff at the end of each session and retrieves relevant past context at the start of the next one.

The name comes from the neural network in Avatar: Eywa connects sessions the way Eywa connects living memory.

How It Works

Eywa runs a deterministic pipeline around your Claude Code transcripts:

  1. Session Detection: 4-strategy fallback (explicit session ID, PID tracing, CWD mtime, global mtime).
  2. Session Conversion: JSONL transcript -> normalized markdown conversation.
  3. Extraction: LLM-powered structured handoff extraction.
  4. Indexing: Inverted index with metadata + TF-IDF-friendly keyword/project maps.
  5. Retrieval: Query keyword scoring + recency decay to return relevant handoffs.
Claude Code JSONL Session
          |
          v
 [Session Detection]
          |
          v
 [JSONL -> Markdown]
          |
          v
 [Structured Extraction]
          |
          v
 [Handoff Markdown + Index]
          |
          v
      eywa_get()

Two-Stage Setup

Stage 1: Batch Index (one-time setup)

Use eywa-batch to process existing historical sessions in bulk through OpenRouter.

  • You can pick any OpenRouter model (Gemini Flash, Claude, GPT, Llama, etc.)
  • Default batch model: google/gemini-3-flash-preview
  • Designed for hundreds of prior sessions
  • Fast + low-cost extraction pass
  • Builds your initial handoff corpus and index

Stage 2: Runtime

Run eywa-mcp alongside Claude Code for ongoing sessions.

  • Uses Claude (Sonnet) extraction at session end (eywa_extract())
  • Retrieves relevant context at session start (eywa_get())
  • Installs a companion CLI (eywa) for scripts and manual use

Installation

Prerequisites

  • Python 3.10+
  • Node.js 18+
  • Claude Code

Option A: Bootstrap (recommended)

Run the repo bootstrap script to check prerequisites and install both Python and Node dependencies:

./setup.sh

This installs three commands:

  • eywa-mcp (MCP stdio server)
  • eywa (CLI: get/extract/rebuild-index)
  • eywa-batch (OpenRouter-powered batch indexing)

Option B: Manual install

1) Install Python package (editable)

pip install -e .

2) Install Node extractor dependencies

cd eywa/extractors
npm install
cd ../..

3) Configure environment

cp .env.example .env

4) Register MCP server

Add to claude_desktop_config.json or ~/.claude.json:

{
  "mcpServers": {
    "eywa": {
      "command": "eywa-mcp"
    }
  }
}

5) Run manually (optional)

eywa-mcp

Configuration

| Variable | Default | Description | |---|---|---| | EYWA_DATA_DIR | ~/.eywa | Runtime storage root for handoffs and index | | EYWA_SESSIONS_DIR | ~/.claude/projects | Claude Code session JSONL root | | EYWA_TASKS_DIR | <EYWA_SESSIONS_DIR parent>/tasks | Tasks directory used for PID-based session detection | | EYWA_CLAUDE_MODEL | sonnet | Model used by runtime extraction (eywa_extract) | | EYWA_OPENROUTER_MODEL | google/gemini-3-flash-preview | OpenRouter model used by batch indexing (eywa-batch) | | OPENROUTER_API_KEY | _(unset)_ | OpenRouter API key for batch extraction | | EYWA_BATCH_DELAY | 0.5 | Delay (seconds) between batch API calls | | EYWA_BATCH_CONCURRENCY | 5 | Concurrent sessions processed by eywa-batch | | EYWA_TIMEZONE | UTC | Timezone for rendered session timestamps | | EYWA_LOG_LEVEL | INFO | Logging verbosity |

Usage

Eywa exposes two MCP tools (for Claude Code) and a CLI (for humans/scripts).

eywa_get()

Retrieve relevant context from prior handoffs.

No query (recent sessions): ``json {"max_handoffs": 3} ``

With query: ``json {"query": "mcp tool routing and index scoring", "days_back": 30, "max_handoffs": 4} ``

With tighter options: ``json {"query": "release pipeline", "days_back": 7, "max_handoffs": 2} ``

Sample output:

## Eywa: 2 past sessions

# Implemented MCP routing fallback logic

## What Happened
- Added explicit tool dispatch guard for unknown tool names.
- Introduced parse-time validation for input payload constraints.

## Open Threads
- Add integration tests for malformed tool inputs.

eywa_extract()

Extract and persist a handoff from the active session.

Auto-detect active session: ``json {} ``

Explicit session ID: ``json {"session_id": "12345678-1234-1234-1234-123456789abc"} ``

CLI (eywa)

Manual equivalents of the MCP tools:

eywa get                          # 3 most recent sessions
eywa get "mcp tool routing" --days-back 30 --max 5
eywa extract                      # auto-detect current session
eywa extract 1b2f6f6b             # 8-char short ID
eywa extract 1b2f6f6b-65a6-...    # full UUID
eywa rebuild-index                # rebuild index from stored handoffs

Batch Indexing

Run one-time bulk import of historical sessions:

eywa-batch

Set your OpenRouter API key first:

export OPENROUTER_API_KEY=...

Choose a model (optional):

export EYWA_OPENROUTER_MODEL=anthropic/claude-3.5-sonnet

Dry run (no API calls):

eywa-batch --dry-run

Custom delay between calls:

eywa-batch --delay 1.0

Set concurrency (1-20):

eywa-batch --concurrency 10

Limit the run:

eywa-batch --max 50

Force reindex all sessions:

eywa-batch --reindex

What to expect:

  • Scans EYWA_SESSIONS_DIR for *.jsonl
  • Skips already-indexed sessions (unless --reindex)
  • Skips very short/trivial sessions
  • Uses OpenRouter Chat Completions with your selected model
  • Writes handoffs to YYYY/MM/DD/<session_id>.md
  • Updates handoff-index.json incrementally
  • Prints progress and end-of-run summary

License

MIT. See LICENSE.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.