# agent-memory-api

Solves memory loss for AI agents operating across multiple calls.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add segawa4321/agent-memory-api

# Browse available tools
npx -y smithery tool list segawa4321/agent-memory-api

# Get full schema for a tool
npx -y smithery tool get segawa4321/agent-memory-api memory_store

# Call a tool
npx -y smithery tool call segawa4321/agent-memory-api memory_store '{}'
```

## Direct MCP Connection

Endpoint: `https://agent-memory-api--segawa4321.run.tools`

## Tools (4)

- `memory_store` — Store memory with AES-256 encryption
- `memory_recall` — Recall memories by semantic query
- `memory_delete` — Delete memory with SHA256 audit proof
- `memory_audit` — Get audit log of all memory operations

```bash
# Get full input/output schema for a tool
npx -y smithery tool get segawa4321/agent-memory-api <tool-name>
```
