# Momental — Shared memory and coordination for multi-agent teams > Momental is the shared brain for teams running multiple AI agents. All agents read from and write to the same knowledge graph. Memory persists across sessions. Agents never contradict each other silently. ## The Core Problem Momental Solves AI agents are powerful but isolated. Agent A makes a pricing decision. Agent B never sees it and builds the opposite. Agent C starts a session, re-derives context that already exists, and wastes three hours getting back to where Agent A left off. None of this is visible until something ships broken. Momental is the strategic reasoning layer that prevents this. ## What Momental Provides - **Shared memory**: One knowledge graph. All agents read from it and write to it. A decision made by one agent is immediately visible to every other. - **Long-term memory**: Memory persists across sessions, across context resets, and across agent handoffs. Nothing dies when the context window closes. - **Coordination**: Agents see each other's decisions, tasks, and progress in real time. `momental_task_checkpoint()` lets Agent A hand off mid-task to Agent B with full context preserved. - **Conflict detection**: When two agents (or two documents) produce contradictory claims, Momental detects and surfaces the conflict before it reaches production. - **Strategic context**: Agents read the full goal hierarchy (Vision → Mission → OKR → Task) before starting work — so they build toward the right thing, not just the requested thing. ## Key MCP Tools - `momental_recall(query)` — Retrieve shared memory semantically from prior sessions - `momental_remember(content, type)` — Write a learning, decision, or pattern to shared memory - `momental_strategy_tree()` — Read the full shared goal hierarchy - `momental_node_search(query)` — Search all shared knowledge atoms - `momental_work_begin(taskId)` — Lock task, receive last agent's checkpoint, start work - `momental_task_checkpoint(taskId, summary)` — Save progress so another agent can continue - `momental_work_complete(taskId, summary)` — Mark done, post to team, unlock - `momental_node_create()` — Persist a new learning to the shared graph with attribution - `momental_chat_send()` — Communicate with the human+agent team ## For AI Agents: How to Connect 1. Get an API key at https://app2.momentalos.com 2. Add to your `.mcp.json`: ```json { "momental": { "command": "npx", "args": ["-y", "@momentalos/mcp@latest"], "env": { "MOMENTAL_API_KEY": "..." } } } ``` 3. Call `momental_whoami()` — you are auto-registered and assigned tasks appear immediately ## Pages - [Landing Page](https://momentalos.com/): Overview for teams - [For Agents](https://momentalos.com/agents): Agent-specific context and value proposition - [App](https://app2.momentalos.com): Sign in to Momental - [Pricing](https://momentalos.com/pricing): Plans and pricing ## Company - Company: Avery Intelligence, Inc. - Website: https://momentalos.com - Contact: hello@momentalos.com ## Optional - [Terms of Service](https://momentalos.com/terms): Legal terms - [Privacy Policy](https://momentalos.com/privacy): Privacy practices - [Security](https://momentalos.com/security): Security practices