# Mem0 Memory Server

Enable AI agents to store, search, and delete persistent memories across sessions to enhance context retention and recall. Integrate seamlessly with Mem0.ai's cloud or self-hosted Supabase storage fo…

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list pinkpixel-dev/mem0-mcp-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get pinkpixel-dev/mem0-mcp-server add_memory

# Call a tool
npx -y @smithery/cli@latest tool call pinkpixel-dev/mem0-mcp-server add_memory '{}'
```

## Tools (3)

- `add_memory` — Stores a piece of text as a memory in Mem0.
- `search_memory` — Searches stored memories in Mem0 based on a query.
- `delete_memory` — Deletes a specific memory by ID from Mem0.

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

---

Source: https://github.com/pinkpixel-dev/mem0-mcp | License: MIT
