Letta MCP Server

create_memory_block

Create a new memory block in the Letta system

Input Schema

NameRequiredDescriptionDefault
agent_idNoOptional agent ID to create the block for a specific agent
labelYesLabel for the memory block (e.g., "persona", "human", "system")
metadataNoOptional metadata for the memory block
nameYesName of the memory block
valueYesContent of the memory block

Input Schema (JSON Schema)

{ "properties": { "agent_id": { "description": "Optional agent ID to create the block for a specific agent", "type": "string" }, "label": { "description": "Label for the memory block (e.g., \"persona\", \"human\", \"system\")", "type": "string" }, "metadata": { "description": "Optional metadata for the memory block", "type": "object" }, "name": { "description": "Name of the memory block", "type": "string" }, "value": { "description": "Content of the memory block", "type": "string" } }, "required": [ "name", "label", "value" ], "type": "object" }