Semantic memory server for AI agent teams
Project description
Annal
Early stage — this project is under active development and not yet ready for production use. APIs, config formats, and storage schemas may change without notice. If you're curious, feel free to explore and open issues, but expect rough edges.
Semantic memory server for AI agent teams. Stores, searches, and retrieves knowledge across sessions using ChromaDB with local ONNX embeddings, exposed as an MCP server.
Designed for multi-agent workflows where analysts, architects, developers, and reviewers need shared institutional memory — decisions made months ago surface automatically when relevant, preventing contradictions and preserving context that no single session can hold.
How it works
Annal runs as a persistent MCP server (stdio or HTTP) and provides five core operations: store a memory, search memories by natural language, delete a memory, list topics, and initialize a project. Memories are embedded locally using all-MiniLM-L6-v2 (ONNX) and stored in ChromaDB, namespaced per project.
File indexing is optional. Point Annal at directories to watch and it will chunk markdown files by heading, track modification times for incremental re-indexing, and keep the store current via watchdog filesystem events.
Agent memories and file-indexed content coexist in the same search space but are distinguished by tags (memory, decision, pattern, bug, indexed, etc.), so agents can search everything or filter to just what they need.
Quick start
git clone https://github.com/heyhayes/annal.git
cd annal
pip install -e ".[dev]"
# Run in stdio mode (single session)
annal
# Run as HTTP daemon (shared across sessions)
annal --transport streamable-http
Claude Code integration
Add to ~/.mcp.json for stdio mode:
{
"mcpServers": {
"annal": {
"command": "/path/to/annal/.venv/bin/annal"
}
}
}
For HTTP daemon mode (recommended when running multiple concurrent sessions):
{
"mcpServers": {
"annal": {
"type": "http",
"url": "http://localhost:9200/mcp"
}
}
}
Project setup
On first use, either call the init_project tool with watch paths for file indexing, or just start storing memories — unknown projects are auto-registered in the config.
init_project(project_name="myapp", watch_paths=["/home/user/projects/myapp"])
Every tool takes a project parameter. Use the directory name of the codebase you're working in (e.g. "myapp", "annal").
Tools
store_memory — Store knowledge with tags and source attribution. Near-duplicates (>95% similarity) are automatically skipped.
search_memories — Natural language search across all memories, with optional tag filtering. Returns similarity scores and memory IDs.
delete_memory — Remove a specific memory by ID.
list_topics — Show all tags and their frequency counts.
init_project — Register a project with watch paths for file indexing.
index_files — Manually re-index all watched files for a project.
Configuration
~/.annal/config.yaml:
data_dir: ~/.annal/data
port: 9200
projects:
myapp:
watch_paths:
- /home/user/projects/myapp
watch_patterns:
- "**/*.md"
- "**/*.yaml"
- "**/*.toml"
- "**/*.json"
watch_exclude:
- "node_modules/**"
- ".git/**"
- ".venv/**"
Running as a daemon
For always-on HTTP daemon mode, use the service scripts in contrib/. Each requires editing the path to your annal install before use.
Linux (systemd)
cp contrib/annal.service ~/.config/systemd/user/
# Edit ExecStart path, then:
systemctl --user daemon-reload
systemctl --user enable --now annal
macOS (launchd)
cp contrib/com.annal.server.plist ~/Library/LaunchAgents/
# Edit the ProgramArguments path, then:
launchctl load ~/Library/LaunchAgents/com.annal.server.plist
To stop: launchctl unload ~/Library/LaunchAgents/com.annal.server.plist
Windows (scheduled task)
.\contrib\annal-service.ps1 -Action install -AnnalPath "C:\path\to\annal\.venv\Scripts\annal.exe"
# Start immediately without waiting for next logon:
Start-ScheduledTask -TaskName "Annal MCP Server"
# Check status / uninstall:
.\contrib\annal-service.ps1 -Action status
.\contrib\annal-service.ps1 -Action uninstall
Development
pip install -e ".[dev]"
pytest -v
License
MIT — see LICENSE.
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 annal-0.1.0.tar.gz.
File metadata
- Download URL: annal-0.1.0.tar.gz
- Upload date:
- Size: 72.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d39ec6d8b412f5f451b3ecc693a6338d45330454f8cbb5c230b5cd097edc996b
|
|
| MD5 |
5a38d418386738bb813f0e99783f83fa
|
|
| BLAKE2b-256 |
3b02950d7a6462299392a2381211aa8c723a03dbd069cefeb2c2e8139759edcb
|
File details
Details for the file annal-0.1.0-py3-none-any.whl.
File metadata
- Download URL: annal-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c45b30f44d9116a87c8167462f2f08ce09a1eff94ca53cf1ae423479d54a48c
|
|
| MD5 |
cbc18cf46a9e04ef0a9ee6be28dc2fc1
|
|
| BLAKE2b-256 |
93775d434f56b1f836cb7673fe0c1addf7a2914108e979af157acae7e87c061a
|