# YourMemory

Persistent memory for AI agents. Memories decay with time, strengthen on recall, and connect through an entity graph. MCP compatible.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add mishrasachit1/YourMemory

# Browse available tools
npx -y smithery tool list mishrasachit1/YourMemory

# Get full schema for a tool
npx -y smithery tool get mishrasachit1/YourMemory recall_memory

# Call a tool
npx -y smithery tool call mishrasachit1/YourMemory recall_memory '{}'
```

## Direct MCP Connection

Endpoint: `https://yourmemory--mishrasachit1.run.tools`

## Tools (3)

- `recall_memory` — Recall relevant memories using hybrid BM25 + vector retrieval with entity graph expansion. Returns top-k memories ranke…
- `store_memory` — Store a new memory. Automatically deduplicates, embeds, and indexes with BM25 and entity graph edges. Skips exact dupli…
- `update_memory` — Update an existing memory by ID. Re-embeds the new content, replaces the old memory, and logs the change to the audit t…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get mishrasachit1/YourMemory <tool-name>
```
