Core Team

The humans behind the contamination firewall.

J
Jayson
Project Lead / Architect
Designing memory systems that earn trust through proof. Building mem20 because agents deserve memory they can audit.
C
Coach
VP Bot Relations
Runs the multi-agent fleet on mem20 daily. Tests concurrency, validates cognitive features, documents what breaks.
Q
QAMaster
VP Quality
Owns the audit suite, contamination tests, and QA gates. Will not ship if contamination_rate != 0.
B
Blendie
VP Creativity
Leads creative and 3D integrations. Blender module, Unity module, and the design tools roadmap.

Contribute

mem20 is MIT-licensed and open to contributions. Here's how to get involved:

Development Note

Engine logic lives in memory_engine/memory.py, not the MCP server. MCP tools are thin handlers. To contribute effectively, start by reading the store engine, not the server layer.

Adding a New Integration

  1. Create mcp/tools/<name>_tools.py with a <Name>ToolsMixin
  2. Guard any external executable with a graceful check
  3. Add the mixin to Mem20MCPServer's bases in server.py
  4. Call self.register_<name>_tools() in _setup_tools()
  5. See IntegrationToolsMixin.register_integration_template() for the scaffold