Source Intelligence
Sweep 28 Aug 2026 ยท 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

Update a memory store

api/beta/memory_stores/update

first seen The page's own history The capture it came from

Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

api/beta/memory_stores/update Changed · +20 / -17 lines

# Update a memory store ## Path parameters ## Headers ## Body parameters ## Returns ## Example ### Response (200) ## Update a memory store ### Path Parameters ### Header Parameters ### Body Parameters ### Returns ### Example #### Response

from line 1
----
-title: Update a memory store
-url: https://platform.claude.com/docs/en/api/beta/memory_stores/update
----
+# Update a memory store
 
-## Update a memory store
+**POST** `/v1/memory_stores/{memory_store_id}`
 
-**post** `/v1/memory_stores/{memory_store_id}`
-
 Update a memory store
 
-### Path Parameters
+## Path parameters
 
 - `memory_store_id: string`
 
-### Header Parameters
+## Headers
 
 - `"anthropic-beta": optional array of AnthropicBeta`
 
from line 86
 
     - `"mid-conversation-tool-changes-2026-07-01"`
 
-### Body Parameters
+## Body parameters
 
 - `description: optional string or null`
 
   New description for the store, up to 1024 characters. Pass an empty string to clear it.
 
+  maxLength: 1024
+
 - `metadata: optional map[string] or null`
 
   Metadata patch. Set a key to a string to upsert it, or to null to delete it. Omit the field to preserve. The stored bag is limited to 16 keys (up to 64 chars each) with values up to 512 chars.
from line 102
 
   New human-readable name for the store. 1โ€“255 characters; no control characters. Renaming changes the slug used for the store's `mount_path` in sessions created after the update.
 
-### Returns
+  minLength: 1, maxLength: 255
 
-- `BetaManagedAgentsMemoryStore object { id, created_at, name, 5 more }`
+## Returns
 
+- `BetaManagedAgentsMemoryStore object`
+
   A `memory_store`: a named container for agent memories, scoped to a workspace. Attach a store to a session via `resources[]` to mount it as a directory the agent can read and write.
 
   - `id: string`
from line 118
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `name: string`
 
     Human-readable name for the store. 1โ€“255 characters. The store's mount-path slug under `/mnt/memory/` is derived from this name.
from line 126
 
   - `type: "memory_store"`
 
-    - `"memory_store"`
-
   - `updated_at: string`
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `archived_at: optional string or null`
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `description: optional string`
 
     Free-text description of what the store contains, up to 1024 characters. Included in the agent's system prompt when the store is attached, so word it to be useful to the agent. Empty string when unset.
from line 146
 
     Arbitrary key-value tags for your own bookkeeping (such as the end user a store belongs to). Up to 16 pairs; keys 1โ€“64 characters; values up to 512 characters. Returned on retrieve/list but not filterable.
 
-### Example
+## Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/memory_stores/$MEMORY_STORE_ID \
     -H 'Content-Type: application/json' \
     -H 'anthropic-version: 2023-06-01' \
from line 157
     -d '{}'
 ```
 
-#### Response
+### Response (200)
 
 ```json
 {