zk_search_notes
Search notes by text, tags, or type to filter and retrieve relevant information efficiently within a Zettelkasten knowledge management system.
Instructions
Search for notes by text, tags, or type. Args: query: Text to search for in titles and content tags: Comma-separated list of tags to filter by note_type: Type of note to filter by limit: Maximum number of results to return
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
note_type | No | ||
query | No | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"note_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Note Type"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Query"
},
"tags": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
}
},
"title": "zk_search_notesArguments",
"type": "object"
}