Stellarion
Tools

stellarion_memory_get

Retrieve a specific memory by its unique ID

Fetches a single memory by ID. Use this when you have a memory ID from a search result or other tool output and want to see its full content.

When to Use

  • You have a memory ID from stellarion_memory_search and want the full details
  • You want to verify a memory's content before invalidating it
  • You are following a reference to a specific memory from another context

Parameters

ParameterTypeRequiredDefaultDescription
idstringyesThe unique memory ID

Examples

Retrieve a memory by ID

Natural language:

Show me memory abc123

MCP call:

{
  "tool": "stellarion_memory_get",
  "arguments": {
    "id": "abc123"
  }
}

Output Format

Returns the full memory record:

  • id — Memory ID
  • content — Full memory content
  • tags — Associated tags
  • category — Category label
  • problem / solution — If stored as a problem/solution pair
  • createdAt — Creation timestamp
  • valid — Whether the memory is still active (not invalidated)

Tips

  • Memory IDs are returned by stellarion_memory_search, stellarion_memory_store, and stellarion_memory_list.
  • Use this before stellarion_memory_invalidate to confirm you're invalidating the right memory.