Skip to main content

codemem

Your coding agents keep rebuilding what you already have. codemem remembers what they built, across every project and every machine, and scores each piece on evidence of whether it worked.

It is an MCP server for Claude Code and other MCP clients. It knows what projects exist, where they live, what reusable pieces they contain, what each session did and decided, every commit pushed to the git host, and how to do recurring things. Everything is searchable from any machine, from an agent, or from the web UI. It is written to during work, not after.

One Python process, SQLite, no external services required.

What makes it different

Inventory scripts snapshot a directory and you read the report once. Registries list what people published. codemem does neither.

  • Trust from evidence, not from stars. Every project and asset gets a computed score from how recently it changed, how much work went into it, whether it is actually deployed and running, whether anything else imports it, and whether a human vouched for it. verify records "I ran it today and it works" and restarts the freshness clock. Scores are recomputed on every sync, so they decay when you stop touching something.
  • It finds the copies you forgot. Discovery mines every repo at HEAD for scripts, modules, service units, Dockerfiles and MCP servers, hashes their functions, and links repos that share code. It will tell you that you wrote the same retry wrapper in three places.
  • Agents feed it automatically. A session hook records what each Claude Code session did, and gives the next session a brief on the project it just opened. The catalogue builds itself.
  • Maturity is a first-class label. authoritative, usable, experimental, antiquated, sunset, broken, junk, each with a reason. Search ranks by it, and you can exclude the ratings you should not build on.
  • Your code stays where it is. codemem stores metadata: names, descriptions, imports, symbols, function hashes, commit records. It does not copy your source anywhere.

Endpoints

Endpoint What
http://<host>:8055/mcp MCP (streamable HTTP) for Claude Code and other MCP clients
http://<host>:8055/ Web UI: search, projects, assets, notes, activity, docs. Dark mode.
http://<host>:8055/api/… JSON API used by the UI (see docs/architecture.md)
http://<host>:8055/health liveness

Normally runs on the git host, the machine holding the bare repos, so it can read them directly.

Security: codemem has no authentication. It is built for a trusted network, and anyone who can reach the port can read and write everything. Do not expose it to the internet without an authenticating proxy in front of it. See docs/architecture.md.

Requirements

Python 3.11 or newer, and git. Optional: a git host with bare repos for the commit feed, Gitea for descriptions and web links, and Ollama for semantic search, drafted descriptions and the review pass. Everything works without the optional pieces; search falls back to BM25 alone.

Why

A developer with many project folders across several machines has no way for a new Claude Code session to know that a retry wrapper, a Gradio helper, a GPU monitor or a data pipeline already exists somewhere. So they get rebuilt. Snapshot inventory scripts (run, read, forget) do not fix that. codemem is the live, writable layer: it is written to during work, not after.

The content is whatever is there. codemem does not filter or judge. Each project carries an audience: unrestricted (the default), professional, or employer, so a search or a view can exclude one when the context calls for it. Nothing is hidden unless asked, with one exception: cloned third-party repos are marked origin = vendor and stay out of search and lists until you ask for them. See docs/USER_GUIDE.md.

Install from PyPI

The package is codemem-mcp; the command it installs is codemem.

pip install codemem-mcp          # or: uv tool install codemem-mcp / pipx install codemem-mcp
codemem serve                    # MCP at http://localhost:8055/mcp, web UI at http://localhost:8055/

uvx codemem-mcp serve            # or run it without installing

Data goes to ~/.codemem/ unless CODEMEM_DB or CODEMEM_DATA says otherwise. Register it with Claude Code:

claude mcp add --transport http --scope user codemem http://localhost:8055/mcp

That is the server alone. For the systemd units, the commit feed and the session hooks, use the quick start below from a clone of the repository.

Quick start

Server (once, on the git host):

./install.sh                # venv, user-scope systemd units, seed, backfill, gitea, scan, embed

Client (each machine, once):

CODEMEM_URL=http://<host>:8055 client/install-client.sh    # Linux/macOS: MCP server + SessionStart/SessionEnd hooks
client\install-client.ps1                                   # Windows PowerShell (set $env:CODEMEM_URL first)

Then in any Claude Code session the codemem tools are available and every session starts with a brief of the current project (if codemem knows it) and ends with an automatic session record.

What Claude sees

Tool Use
search hybrid BM25 + embedding search over everything. First call before building anything
project_brief everything about one project, by name or working directory
list_projects filter by status, tag, machine, audience, visibility
update_project description, purpose, status, tags, audience, origin (own/vendor), visibility, maturity
register_asset record a reusable script/module/prompt/skill/service with a one-line usage
find_assets search or list assets by kind/tag/project, or by imported library
log_session what was done, decided, used, abandoned, and what is next
add_note decision, howto, resource, issue, idea
delete_note remove a note written by mistake, with its index and embedding rows
link_items project uses / could-reuse / supersedes / derived-from another
rate maturity: authoritative, usable, experimental, antiquated, sunset, broken, junk, with a why
verify "I ran it today and it works": restarts the computed trust score's freshness clock
handoff / list_handoffs track one implementation replacing another through candidate, shadow, verified, promoted
howto how to publish, add a machine, use codemem, plus whatever docs are ingested
activity commits and sessions across all machines, last N days
add_scan_root / scan_path register a directory to scan; scan now (server machine)
stats counts, machines, index coverage
help workflow, tool list, label vocabularies. Also /codemem in Claude Code, /codemem <query> searches

Where the data comes from

  • Git host: every bare repo in GIT_ROOT is backfilled; a post-receive hook posts each push to /ingest/push so new commits appear within seconds. See docs/git-commit-feed.md.
  • Gitea (optional): descriptions, topics and web URLs, via its API with a read token.
  • Local scan: project directories under registered roots, per machine. On the server this is automatic; other machines run client/codemem_agent.py once a root is registered.
  • Discovery: every own repo is mined at HEAD for scripts, modules, units, Dockerfiles, prompts and MCP servers, recorded as auto-discovered assets, with shared-code links between repos.
  • Docs: markdown from CODEMEM_DOC_SOURCES (this repo by default), re-hashed every sync.
  • Claude Code: session records from the hook, plus whatever Claude writes with the tools.
  • Local model (optional, via Ollama): embeddings for semantic search, drafted descriptions, and a targeted review of near-duplicate functions and thinly described code.

Layout

codemem/        the server package
  config.py     every tunable, env-overridable
  db.py         schema, connection, single FTS5 index
  store.py      all writes (keeps the index in step)
  search.py     BM25 + Ollama embeddings, reciprocal rank fusion
  gitsync.py    bare-repo backfill, push ingest, push.log, Gitea
  scan.py       project discovery + location records
  discover*.py  asset discovery, shared-code linking (core is shared with the remote agent)
  trust.py      computed trust scores
  review.py     targeted model review
  describe.py   model-drafted project descriptions
  knowledge.py  doc ingest, howto/asset seed
  server.py     MCP tools, HTTP routes, JSON API
  cli.py        serve | backfill | gitea | docs | seed | scan | embed | reindex | backup | sync | discover | review | trust | describe | purge
  web/          the single-file web UI (+ vendored marked.js)
client/         hook, remote scan agent, slash command, per-OS installers
systemd/        user-scope units: service, sync timer (6h), backup timer (02:45)
docs/           user guide, architecture, git-commit-feed, clients, operations, python-vs-typescript

Storage: $CODEMEM_DB (default ~/.codemem/codemem.db, SQLite, WAL). Backups: $CODEMEM_BACKUP_DIR (default ~/.codemem/backups/).

Status and contributing

Extracted from a system that has been running daily against 165 projects, 735 assets and 2,000+ commits across three machines. It is stable for that use, but it has had one operator, so expect rough edges the moment your layout differs from that one. Issues and pull requests welcome; please open an issue before a large change so we can agree on the shape. See CONTRIBUTING.md for how to run it locally and the two rules that are not negotiable, and SECURITY.md for what it stores and how to report a vulnerability.

Run scripts/smoke.sh before pushing: it boots the server against a throwaway database and checks that health, the web UI, the JSON API and the schema all come up.

License

Apache License 2.0. See LICENSE.

Copyright © 2026 Jeff Angelcyk.

Release files for codemem-mcp 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for codemem-mcp 0.1.0
File Size Uploaded
codemem_mcp-0.1.0.tar.gz 81.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for codemem-mcp 0.1.0
File Interpreter ABI Platform
codemem_mcp-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 166.5 kB

Release files / codemem_mcp-0.1.0.tar.gz

Download URL codemem_mcp-0.1.0.tar.gz
Size 81.3 kB
Tags Source
SHA-256 checksum
How to use checksums
c8f7fbb37431379881a2af91d268e3639f596aa9458e98299dabf906e35dff56
BLAKE2b-256 checksum
How to use checksums
16159ce17c1b4abbf83fed5c34b0d3950ca072ec7ca570ce6a8566cd432b9b98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / codemem_mcp-0.1.0-py3-none-any.whl

Download URL codemem_mcp-0.1.0-py3-none-any.whl
Size 85.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
cb8efb4cb6046dbffb62b2f8655cf53963f9e87bf1d9cab65c75780186de1ef9
BLAKE2b-256 checksum
How to use checksums
e89d9788ee2bf1dde8c7aa5255c9e3643563a07342585b04f9f86d5e8ee95b8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page