Memory-Context Alignment Layer for Goal-Coherent AI Agents
Project description
MCAL: Memory-Context Alignment Layer
Intent-Preserving Memory for Goal-Coherent AI Agents
Why MCAL?
Current AI memory systems store facts but lose meaning:
| What's Stored | What's Lost |
|---|---|
| "User chose PostgreSQL" | WHY they chose it over MongoDB |
| "User wants to visit Japan" | HOW this fits their overall travel goals |
MCAL preserves the reasoning behind decisions, not just the conclusions.
Installation
pip install mcal-ai
Framework integrations:
pip install mcal-ai-langgraph # LangGraph integration
pip install mcal-ai-crewai # CrewAI integration
pip install mcal-ai-autogen # AutoGen integration
Quick Start
import asyncio
from mcal import MCAL
async def main():
mcal = MCAL(llm_provider="anthropic") # or "openai", "bedrock"
messages = [
{"role": "user", "content": "I'm building a fraud detection pipeline"},
{"role": "assistant", "content": "Let's start with data ingestion..."},
{"role": "user", "content": "I chose PostgreSQL over MongoDB for storage"},
]
# Extract goals, decisions, and reasoning
result = await mcal.add(messages, user_id="user_123")
print(f"Extracted {result.unified_graph.node_count} nodes")
# Search with goal-aware retrieval
results = await mcal.search("What database?", user_id="user_123")
# Get context for LLM prompts
context = await mcal.get_context("What's next?", user_id="user_123")
asyncio.run(main())
Key Features
- Intent Graph — Hierarchical goal structures (Mission → Goal → Task)
- Reasoning Chains — Store WHY decisions were made, not just conclusions
- Goal-Aware Retrieval — Retrieve based on objective alignment, not just similarity
- Multi-Provider — Works with Anthropic, OpenAI, and AWS Bedrock
- Standalone Storage — Built-in JSON and SQLite persistence, no external services needed
- Thread-Safe — Safe for concurrent multi-user access
- Tiered Models — Fast/smart model routing for cost-efficient extraction
- Extraction Cache — Skip redundant LLM calls with per-turn cache hits
- Graph Compaction — Automatic deduplication and summarization at scale
- GDPR-Ready — Full user data erasure with
clear_user_data()
Configuration
mcal = MCAL(
llm_provider="bedrock", # "openai", "anthropic", or "bedrock"
anthropic_api_key="sk-ant-...", # Or set ANTHROPIC_API_KEY env var
openai_api_key="sk-...", # Or set OPENAI_API_KEY env var
storage_path="~/.mcal", # Persistent storage location
enable_persistence=True, # Cross-session persistence (default)
max_graph_nodes=500, # Max nodes per user graph
# Bedrock options
bedrock_model="llama-3.3-70b", # Default extraction model
bedrock_region="us-east-1", # AWS region
# Tiered model routing (fast for simple, smart for complex)
enable_tiered_extraction=True,
bedrock_fast_model="llama-3.1-8b",
bedrock_smart_model="llama-3.3-70b",
# Extraction cache
enable_extraction_cache=True, # Skip repeated LLM calls (default)
cache_ttl_seconds=86400, # Cache lifetime (default: 24h)
# Graph compaction
compaction_policy="moderate", # "none", "moderate", or "aggressive"
compaction_interval=10, # Compact every N turns
)
LangGraph Integration
from mcal import MCAL
from mcal_langgraph import MCALMemory, MCALMemoryConfig, MCALStore
# Declarative config — all Bedrock/tiered params supported
config = MCALMemoryConfig(
llm_provider="bedrock",
bedrock_model="llama-3.3-70b",
bedrock_region="us-east-1",
enable_tiered_extraction=True,
enable_persistence=True,
)
# Or create directly
mcal = MCAL(llm_provider="bedrock")
memory = MCALMemory(mcal=mcal, user_id="user_123")
# Use as LangGraph BaseStore
store = MCALStore(mcal)
# Memory accepts both LangChain Message objects and plain dicts
await memory.add([
{"role": "user", "content": "We chose Kafka for event streaming"},
{"role": "assistant", "content": "Good choice for high throughput."},
])
# Search returns goal-aware results
results = await memory.search("streaming architecture")
User Data Management
# Full user data erasure (GDPR Article 17 compliant)
await mcal.clear_user_data("user_123")
# Removes all files, graphs, caches, and in-memory state for the user
# In-memory-only mode — zero disk writes
mcal = MCAL(
llm_provider="openai",
storage_path="/tmp/session",
enable_persistence=False, # No files written to disk
)
Environment Variables
# Choose your LLM provider
ANTHROPIC_API_KEY=sk-ant-... # For Claude
OPENAI_API_KEY=sk-... # For GPT-4 / embeddings
# Optional: AWS Bedrock
AWS_ACCESS_KEY_ID=...
AWS_SECRET_ACCESS_KEY=...
AWS_DEFAULT_REGION=us-east-1
MCAL auto-detects API keys from environment variables when not passed explicitly.
What's New in 0.2.7
- GDPR-compliant data erasure —
clear_user_data()now removes the entire user directory from disk, not just the graph file - Dict-format message support —
MCALMemoryaccepts plain dicts ({"role": "user", "content": "..."}) alongside LangChain Message objects - In-memory-only mode —
enable_persistence=Falseguarantees zero disk writes, including extraction cache - Full
MCALMemoryConfig— Declarative config now supports all Bedrock, tiered model, persistence, and cache parameters - Tiered routing accuracy — Complexity classifier now routes on raw user messages for reliable fast/smart splits
- Extraction cache per-turn support — Cache hits work with agents that pass one turn at a time (not full history)
- Deduplication improvements — Enhanced label normalization and forced embedding loads for reliable semantic merges
Documentation
License
MIT License — see LICENSE for details.
Author
Created by Shiva Koreddi
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 mcal_ai-0.2.7.tar.gz.
File metadata
- Download URL: mcal_ai-0.2.7.tar.gz
- Upload date:
- Size: 101.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9537f0ac2516becb00a3bb5bbc03c859e5e9e7c6449a8ff9542c7b395123ae36
|
|
| MD5 |
2d7614d64a3355e68f0c31d4595aae75
|
|
| BLAKE2b-256 |
752db0db8b509dc414eb4584a443eb1595deb786294e97c16d60e8512e75ca17
|
File details
Details for the file mcal_ai-0.2.7-py3-none-any.whl.
File metadata
- Download URL: mcal_ai-0.2.7-py3-none-any.whl
- Upload date:
- Size: 106.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7d5fc36dcc7134abb17d4187039309ff5db1ba05b8e62ec021d6f301d2f80bf
|
|
| MD5 |
142a7b6f49c5f5509ec5a44f7b5fc30a
|
|
| BLAKE2b-256 |
62e2b361c2c981cc452914fe785ee8fa0b33dbb9dde2b641bcbcdbbda360f18c
|