search_by_property
Search for notes by frontmatter property values to quickly locate specific content based on metadata fields in your Obsidian vault.
Instructions
Search for notes by frontmatter property (metadata field)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
property_name | Yes | ||
property_value | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"property_name": {
"title": "Property Name",
"type": "string"
},
"property_value": {
"default": "",
"title": "Property Value",
"type": "string"
}
},
"required": [
"property_name"
],
"type": "object"
}