# memory-mcp Forget (Delete Memories by ID)

> memory-mcp Forget (Delete Memories by ID) is a paid API for AI agents from mem.borisinc.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Deletes one or more specific memories from an agent's wallet-scoped memory namespace by their IDs.

## Facts

- Endpoint: GET https://mem.borisinc.com/paid/memory/forget
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/memory-mcp-forget-delete-memories-by-id-59f8375b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BK__5dd_bYZ6JDA16mEG-

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-forget-delete-memories-by-id-59f8375b
```

Example prompt: Please forget the memories with IDs 41, 42, and 55 from my agent memory — I no longer need those stored.

## When to prefer this

Use this endpoint when you know the exact memory IDs you want to remove and need precise, targeted deletion rather than a broad wipe. It is the right choice when cleaning up specific stale, incorrect, or sensitive memories without affecting the rest of the agent's memory namespace. Prefer this over any bulk-reset operation when surgical control over which records are removed is important.

## Known failure modes

- Invalid or missing 'ids' query parameter returns an error
- IDs that don't exist in the namespace are silently ignored or partially deleted
- Payment failure via x402 prevents execution
- More than 100 comma-separated IDs in one request exceeds the limit
- Non-GET HTTP method returns a method-not-allowed error

## 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 confirming the wallet namespace, how many IDs were requested for deletion, the list of deleted memory IDs, and the count of successfully deleted memories.

## 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",
     "required": [
      "ids"
     ],
     "properties": {
      "ids": {
       "type": "string",
       "description": "Comma-separated memory ids to delete (max 100)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "namespace": "0xabc...",
  "requested": 2,
  "deleted_ids": [
   41,
   42
  ],
  "deleted_count": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/memory-mcp-forget-delete-memories-by-id-59f8375b/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)
