Initial commit: LangMem fact-based AI memory system with docs and MCP integration

- Complete fact-based memory API with mem0-inspired approach
- Individual fact extraction and deduplication
- ADD/UPDATE/DELETE memory actions
- Precision search with 0.86+ similarity scores
- MCP server for Claude Code integration
- Neo4j graph relationships and PostgreSQL vector storage
- Comprehensive documentation with architecture and API docs
- Matrix communication integration
- Production-ready Docker setup with Ollama and Supabase

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Docker Config Backup
2025-07-17 13:16:19 +02:00
commit 46faa78237
43 changed files with 9086 additions and 0 deletions

13
mcp_config.json Normal file
View File

@@ -0,0 +1,13 @@
{
"mcpServers": {
"langmem": {
"command": "python",
"args": ["/home/klas/langmem-project/src/mcp/server.py"],
"cwd": "/home/klas/langmem-project",
"env": {
"LANGMEM_API_URL": "http://localhost:8765",
"LANGMEM_API_KEY": "langmem_api_key_2025"
}
}
}
}