Introduction
Memax is the universal context and memory hub for AI coding agents. Push knowledge from anywhere, recall it from any agent.
Memax is a cloud-hosted memory layer that sits between you and your AI coding agents. It gives every agent — Claude Code, Cursor, Codex, Copilot, Windsurf — persistent, shared access to your knowledge.
Think of it like this
Google's AI Overview, but for your personal and team knowledge. Push docs, decisions, and context once. Every agent recalls exactly what it needs.
The Problem
AI coding agents are powerful, but they forget everything between sessions. Each agent has its own isolated memory. Your Claude Code doesn't know what you told Cursor. Your Codex doesn't know the architecture decisions you explained to Copilot.
You end up repeating context, re-explaining decisions, and copy-pasting docs — across agents, devices, and teammates.
The Solution
Memax is a single hub where all your knowledge lives. Push from anywhere. Recall from any agent. Share with your team when ready.
You → push knowledge → Memax → agents recall it automaticallyThree product surfaces:
- CLI (
memax-cli) — for power users and CI/CD pipelines - Web App (memax.app) — for all users, including non-technical
- Developer Hub (memax.dev) — docs, API reference, integration guides
How It Works
Push knowledge from anywhere
Push markdown, code, chat transcripts, URLs, meeting notes — from CLI, web app, file sync, or API. Memax auto-categorizes and chunks everything for retrieval.
memax push --file ./ARCHITECTURE.md
memax push https://docs.google.com/doc/d/abc123
echo "We chose JWT for auth because..." | memax pushAgents recall what they need
Every agent gets relevant context automatically. MCP server for tool-calling agents. Claude Code hooks for ambient injection. CLI piping as the universal fallback. Under 500ms.
# MCP: agents call memax_recall tool directly
# Hook: context injected before every prompt
memax hook install claude-code
# Pipe: universal fallback
memax recall "how does auth work?" | pbcopyTeams share context instantly
Private by default. Share to your team hub when ready. New teammates get full project context on day one — architecture decisions, deploy runbooks, coding conventions.
memax push --file ./runbook.md --boundary team
memax hub invite teammate@company.comQuick Start
Get set up in under two minutes:
# Install the CLI
npm install -g memax-cli
# Authenticate
memax login
# Push your first document
memax push --file ./ARCHITECTURE.md
# Set up Claude Code integration
memax setup claude-codeQuickstart Guide
Full installation and setup walkthrough
CLI Reference
Every command, flag, and option
Agent Integrations
Claude Code, Cursor, Codex, MCP setup
Core Concepts
Memories, hubs, boundaries, and dreams
REST API
HTTP endpoints with request/response examples
TypeScript SDK
memax-sdk client library reference