search_memos
Search through stored notes using content keywords, creator filters, tags, or visibility settings to find relevant information quickly.
Instructions
Search for memos with optional filters.
Args: query: Text to search for in memo content creator_id: Filter by creator user ID tag: Filter by tag name visibility: Filter by visibility (PUBLIC, PROTECTED, PRIVATE) limit: Maximum number of results to return (default: 10) offset: Number of results to skip (default: 0)
Returns: JSON string containing the list of matching memos
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| creator_id | No | ||
| tag | No | ||
| visibility | No | ||
| limit | No | ||
| offset | No |
Input Schema (JSON Schema)
{
"properties": {
"creator_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
},
"limit": {
"default": 10,
"type": "integer"
},
"offset": {
"default": 0,
"type": "integer"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"tag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"visibility": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}