deleteMemo
Remove a specific memo by its ID from the memo-mcp server, which supports recording, searching, and retrieving memos using a LowDB local database.
Instructions
Delete a memo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the memo |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the memo",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}