# Mem0 Memory Server

Store and search user-specific memories to maintain context and enable informed decision-making based on past interactions. Seamlessly integrate memory capabilities into your AI tools with a simple a…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add big-omega/mem0-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list big-omega/mem0-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get big-omega/mem0-mcp add-memory

# Call a tool
npx -y @smithery/cli@latest tool call big-omega/mem0-mcp add-memory '{}'
```

## Tools (4)

- `add-memory` — Add a new memory. This method is called everytime the user informs anything about themselves, their preferences, or any…
- `search-memories` — Search through stored memories. This method is called ANYTIME the user asks anything.
- `get-process-tree` — Get the current process tree from the environment. This is similar to running `ps -eaf --forest` in a Linux environment.
- `execute-command` — Execute a shell command and return the output.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get big-omega/mem0-mcp <tool-name>
```

---

Source: https://github.com/big-omega/mem0-mcp/tree/main/node/mem0
