Memory Box MCP Server

by amotivv
Verified

save_memory

Save a memory to Memory Box with proper formatting

Input Schema

NameRequiredDescriptionDefault
bucket_idNoThe bucket to save the memory to (default: "General")
formatNoWhether to format the memory according to the system prompt (default: true)
textYesThe memory content to save
typeNoThe type of memory (TECHNICAL, DECISION, SOLUTION, CONCEPT, REFERENCE, APPLICATION, FACT) for formatting (default: "TECHNICAL")

Input Schema (JSON Schema)

{ "properties": { "bucket_id": { "description": "The bucket to save the memory to (default: \"General\")", "type": "string" }, "format": { "description": "Whether to format the memory according to the system prompt (default: true)", "type": "boolean" }, "text": { "description": "The memory content to save", "type": "string" }, "type": { "description": "The type of memory (TECHNICAL, DECISION, SOLUTION, CONCEPT, REFERENCE, APPLICATION, FACT) for formatting (default: \"TECHNICAL\")", "type": "string" } }, "required": [ "text" ], "type": "object" }