Tools
plungeai_memory
Long-term memory scoped to you: action recall|remember|search_runs|get_run.
Authorizations
Authorization: Bearer ozk_….X-API-Key: ozk_….Every request needs a key, tools/list included.
Arguments
Maximum string length: 4000
Available options: recall, remember, search_runs, get_run
for `search_runs`
Maximum string length: 2000
for `get_run`
Maximum string length: 256
Available options: user, memory
Default: memory
Available options: add, replace, remove, read
Default: add
for `add`, `replace`
Maximum string length: 65536
for `replace`, `remove`
Maximum string length: 2000
Default: 10
Required range: 1 <= x <= 100
Output
Markdown text.
Long-term memory scoped to you: action recall|remember|search_runs|get_run. remember writes the durable store that recall reads (target user|memory, operation add|replace|remove|read) — use it when the user asks to remember something. Past-run history is separate: search_runs/get_run read the run journal, which recall deliberately does not include.
Long-term memory scoped to you: action recall, remember, search_runs or get_run. remember writes the durable store that recall reads (target user or memory, operation add, replace, remove or read); use it when the user asks to remember something. Past-run history is separate: search_runs / get_run read the run journal, which recall deliberately does not include.
Returns. recall: both stores (memory, then the user profile), or No memory recorded yet.. remember: Saved to memory (<usage>). recall will see it immediately., or for read the entries under # Memory (<target>); a write over the budget is refused with the current entries. search_runs: # Matching runs with `<run id>` — <goal> lines. get_run: the stored run, or Run not found.. Details: 10.2 (opens in a new tab).
curl -s https://mcp.plungeai.com/v1 \
-H "Authorization: Bearer $PLUNGE_API_KEY" \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"plungeai_memory","arguments":{"user_request":"what do you remember about our fiscal year?","action":"recall"}}}'One parameter recurs across the tools: user_request (on every tool: a string of up to 4,000 characters, optional; clients should always send it). It is described once in Recurring parameters on the MCP overview.