find_notes_by_title
Search and retrieve notes from the Bear App by specifying a title query. Choose between exact or partial title matching to filter results based on your criteria.
Instructions
Find notes by title
Args: title_query: Title text to search for exact_match: Whether to match title exactly or use partial matching
Returns: Notes matching the title criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exact_match | No | ||
title_query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"exact_match": {
"default": false,
"title": "Exact Match",
"type": "boolean"
},
"title_query": {
"title": "Title Query",
"type": "string"
}
},
"required": [
"title_query"
],
"type": "object"
}