readwise_topic_search
Search documents in Readwise Reader by matching topics against titles, summaries, notes, and tags using case-insensitive regex patterns.
Instructions
Search documents in Readwise Reader by topic using regex matching on title, summary, notes, and tags
Input Schema
Name | Required | Description | Default |
---|---|---|---|
searchTerms | Yes | List of search terms to match against document content (case-insensitive regex matching) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"searchTerms": {
"description": "List of search terms to match against document content (case-insensitive regex matching)",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"searchTerms"
],
"type": "object"
}