search_notes
Search your Obsidian vault by content, title, or tags to quickly find relevant notes and information across your knowledge base.
Instructions
Search the vault by content, title, tags, or all
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder | No | ||
limit | No | ||
query | Yes | ||
search_type | No | all |
Input Schema (JSON Schema)
{
"properties": {
"folder": {
"default": "",
"title": "Folder",
"type": "string"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"search_type": {
"default": "all",
"enum": [
"content",
"title",
"tags",
"all"
],
"title": "Search Type",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}