Store an insight, decision, or pattern to memory
Store important insights, decisions, or patterns for future recall. Use when you need to remember bug fixes, architecture choices, or reusable approaches across sessions.
/plugin marketplace add verygoodplugins/mcp-automem/plugin install automem@verygoodplugins-mcp-automemStore important information for future recall:
Identify Memory Type:
Format Content:
Brief title. Context and details. Impact/outcome.
Store with Tags:
mcp__memory__store_memory({
content: "[formatted content]",
type: "[Decision|Insight|Pattern|Preference|Context]",
importance: [0.5-1.0],
tags: ["project-name", "component", "type", "YYYY-MM"],
metadata: {
files_modified: ["relevant/files.ts"],
// Additional context as needed
}
})
Create Associations (if related memories exist):
mcp__memory__associate_memories({
memory1_id: "[new-memory-id]",
memory2_id: "[related-memory-id]",
type: "RELATES_TO",
strength: 0.8
})
Ask the user what they want to store if not clear from context.