search_memo
Search for specific memos in the MCP Server Memos database using keywords to locate relevant content efficiently.
Instructions
Search for memos
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key_word | Yes | The key words to search for in the memo content. |
Input Schema (JSON Schema)
{
"description": "Request to search memo",
"properties": {
"key_word": {
"description": "The key words to search for in the memo content.",
"title": "Key Word",
"type": "string"
}
},
"required": [
"key_word"
],
"title": "SearchMemoRequest",
"type": "object"
}