Developer context continuity system — temporal knowledge graph for AI coding agents, served via MCP. Inspired by Vannevar Bush's 1945 concept of a machine that remembers everything.
Project description
memex-mcp
A developer context continuity system that builds and maintains a temporal knowledge graph of your codebase.
Inspired by Vannevar Bush's 1945 concept of a machine that remembers everything — memex is a developer context continuity system. It watches your repo, builds a temporal knowledge graph of your codebase, and serves it to any AI coding agent via MCP — so every agent session starts knowing your architecture, your recent decisions, and your open problems. Automatically. Without any manual context pasting.
The problem
Every time you open a new agent session — Gemini CLI, Claude Code, Codex — the agent starts blind. You find yourself re-explaining architecture decisions, pasting the same core files, and watching the agent rediscover refactors you finished last month. This cycle wastes tokens, adds friction, and prevents AI agents from becoming deep collaborators. memex eliminates this "cold start" problem by providing agents with a persistent, evolving memory of your project's history and rationale.
How it works
┌──────────────────┐ ┌──────────────┐ ┌─────────────┐
│ Your Repository │ ───► │ memex Watcher│ ───► │ Neo4j │
│ (Files + Git) │ │ (Tree-sitter)│ │ (Knowledge │
└──────────────────┘ └──────────────┘ │ Graph) │
└──────┬──────┘
│
▼
┌──────────────────┐ ┌──────────────┐ ┌─────────────┐
│ AI Agent │ ◄─── │ MCP Server │ ◄────┤ Graphiti │
│ (Gemini/Claude) │ │ (stdio) │ │ Engine │
└──────────────────┘ └──────────────┘ └─────────────┘
memex runs a background watcher that uses tree-sitter to extract structured symbols and Gemini Flash to synthesize technical decisions from git commits. This data is woven into a temporal knowledge graph powered by Graphiti and Neo4j, which maintains a high-fidelity record of how your code evolves. Agents connect to this graph via a standard Model Context Protocol (MCP) server, allowing them to query context on demand rather than requiring manual file-pasting.
Installation
via npx (no install required)
npx memex-mcp init --repo .
npx memex-mcp watch --repo .
via pip / uv
uv add memex-mcp
pip install memex-mcp
from source
git clone https://github.com/STiFLeR7/memex
cd memex
uv sync
Quickstart
Prerequisites: Python 3.11+, uv, Docker, and a Gemini API Key.
# 1. Start Neo4j infrastructure
docker-compose -f docker/docker-compose.yml up -d
# 2. Configure environment
# In your project root, create a .env file:
# NEO4J_URI=bolt://localhost:7687
# NEO4J_USER=neo4j
# NEO4J_PASSWORD=your_password
# GEMINI_API_KEY=your_api_key
# 3. Initialize and watch your repo
memex init --repo .
memex watch --repo .
# 4. Serve the MCP context (in a new terminal)
memex serve --repo .
Connecting your agent
Gemini CLI
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"memex": {
"command": "npx",
"args": ["-y", "memex-mcp", "serve", "--repo", "."]
}
}
}
Claude Code
Add to .claude/settings.json:
{
"mcpServers": {
"memex": {
"type": "stdio",
"command": "npx",
"args": ["-y", "memex-mcp", "serve", "--repo", "."]
}
}
}
Codex
Add to ~/.codex/config.toml:
[mcp_servers.memex]
command = "npx"
args = ["-y", "memex-mcp", "serve", "--repo", "."]
MCP tools
Read Tools (Context Retrieval)
| Tool | When to call it | Returns |
|---|---|---|
get_project_context |
At session start to get a project overview. | Markdown briefing of modules, decisions, and debt. |
get_symbol_context |
Before editing a specific function or class. | Signatures, callers, callees, and linked history. |
get_recent_decisions |
To understand recent architectural shifts. | Chronological list of tech decisions and rationales. |
get_open_problems |
To find technical debt or active bugs. | List of problems sorted by severity (Critical → Low). |
search_context |
For broad discovery across all node types. | Hybrid search results (semantic + keyword + graph). |
get_stale_context |
To identify potentially outdated documentation. | Report of edges with low confidence scores. |
Write Tools (Graph Compounding)
| Tool | When to call it | Returns |
|---|---|---|
record_decision |
After making a technical or architectural choice. | Confirmation with the new Decision ID. |
record_problem |
When discovering a bug or technical debt item. | Confirmation with the new Problem ID. |
resolve_problem |
When a tracked problem has been fixed. | Confirmation of closure and session link. |
invalidate_edge |
When identifying a stale or incorrect fact. | Confirmation of edge invalidation. |
How the graph works
The memex knowledge graph is built on a bitemporal model, meaning every relationship has both a creation time and an optional invalidation time. This allows the system to store a complete history of the codebase, enabling agents to query what was true at any point in time. To ensure the context remains relevant, a nightly decay scheduler reduces the confidence of information that hasn't been recently verified or interacted with. This "forgetting" mechanism prevents old documentation from cluttering agent context while still preserving it in the historical graph. Because the system is bidirectional, agent observations compound over time; if an agent records a decision in one session, every subsequent agent session automatically starts with that knowledge.
Releasing
- Add
PYPI_API_TOKENto GitHub repo secrets (Settings → Secrets → Actions) - Add
NPM_TOKENto GitHub repo secrets - Push a tag
git tag v0.1.2 && git push origin --tagsto trigger both publishes automatically
Inspiration
Vannevar Bush's 1945 essay "As We May Think" described the memex as a device that stores all of a person's knowledge, cross-referenced and associative. This project is a small step toward that idea, applied to the context an AI agent needs to work effectively inside a codebase.
License
MIT - STiFLeR7
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file memex_mcp-0.1.1.tar.gz.
File metadata
- Download URL: memex_mcp-0.1.1.tar.gz
- Upload date:
- Size: 2.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27dc5fb3d240c45f4d96835d77dbace7c4405c504dde1479288b104f8aacee8c
|
|
| MD5 |
076fb2f1a89d395544364a5cd9406540
|
|
| BLAKE2b-256 |
3392875738243f8e3a029018992d1ed8e502edf499463f1a36c18655a66d1208
|
File details
Details for the file memex_mcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: memex_mcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 39.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b807e9f0611dd70c0a11ffa5421d98e98ad55e83194f3a63221a46433aaea17e
|
|
| MD5 |
9419cfe9b8d65c82b3fafde1248ed498
|
|
| BLAKE2b-256 |
fb1fa4e21daf8b8346aa3dcc47028f05ce25ad14f31b79c35d260e7d29556593
|