get_memory
Retrieve specific memories by ID or title using the Memory MCP server. Access stored data efficiently for quick retrieval and management.
Instructions
Retrieve a specific memory by ID or title.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | No | The ID of the memory to retrieve | |
title | No | The title of the memory to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "The ID of the memory to retrieve",
"type": "integer"
},
"title": {
"description": "The title of the memory to retrieve",
"type": "string"
}
},
"title": "getMemoryArguments",
"type": "object"
}