# memory-mcp Export All Memories

> memory-mcp Export All Memories is a paid API for AI agents from mem.borisinc.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Exports all stored memories for the calling agent's wallet-based namespace as a paginated JSON list

## Facts

- Endpoint: GET https://mem.borisinc.com/paid/memory/export
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/memory-mcp-export-all-memories-1fc91d67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VwMbLFqdnRdP6tR1fQ0D9

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability memory-mcp-export-all-memories-1fc91d67
```

Example prompt: Export all of my stored memories from my memory-mcp namespace so I can back them up or review everything my agent has remembered.

## When to prefer this

Use this endpoint when you need a complete bulk export of all stored memories for an agent's wallet namespace, rather than searching for specific memories (use the search endpoint for targeted retrieval). Ideal for backup, migration, auditing, or initializing a new agent session with full memory context. Costs $0.01 per call vs $0.001 for write or $0.002 for search, so prefer targeted search when you don't need everything.

## Known failure modes

- No wallet/payment header provided — 402 Payment Required with x402 challenge
- Insufficient USDC balance for $0.01 call fee — payment rejected
- Invalid or expired payment — 402 error returned
- Empty namespace — returns count:0 with empty memories array
- Wallet address not recognized — empty or error response
- Network congestion on Base mainnet delaying payment settlement

## How this service works

Persistent memory for AI agents, paid per call via x402 (USDC, Base mainnet) — your wallet is your private, semantically-indexed memory namespace. Write $0.001, search $0.002, export $0.01; free trial + $2/30d unlimited subscription. MCP + HTTP. No account, no API key.

## Output

A JSON object containing a count of all stored memories, an array of memory objects each with an id and content field, and the wallet-derived namespace identifier (e.g. {count: 2, memories: [{id: 42, content: '...'}], namespace: '0xabc...'}).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "offset": {
       "type": "integer",
       "description": "row offset for paging past the first 1000 (default 0)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "offset": 0,
  "has_more": false,
  "memories": [
   {
    "id": 42,
    "content": "..."
   }
  ],
  "namespace": "0xabc..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/memory-mcp-export-all-memories-1fc91d67/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mem.borisinc.com](https://www.zero.xyz/host/mem.borisinc.com/llms.txt)
