get_memo
Retrieve specific memos from the MCP Server Memos by providing the memo name. Enables quick access to stored information for efficient management and interaction.
Instructions
Get a memo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the memo. Format: memos/{id} |
Input Schema (JSON Schema)
{
"description": "Request to get memo",
"properties": {
"name": {
"description": "The name of the memo.\nFormat: memos/{id}\n",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "GetMemoRequest",
"type": "object"
}