add_memory_entry
Add a new memory entry to your research memory palace. Stores summaries, topics, and optional detailed markdown to build a searchable, persistent second brain.
Instructions
Add a new memory entry to the memory palace.
Inserts into the memory_entries table. If detail is provided, also writes
a markdown file under journal/{entry_type}s/.
Args:
title: Short title for the entry.
summary: One-paragraph summary (stored in DB, shown in search).
topics: Comma-separated topic tags, e.g. "metis-setup,mcp-server".
entry_type: One of "session", "journal", "idea", "decision", "topic".
detail: Full markdown content for the .md file (optional).
computer: Hostname of the computer this entry is from (optional).Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| summary | Yes | ||
| topics | Yes | ||
| entry_type | No | journal | |
| detail | No | ||
| computer | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |