search_readwise_highlights
Search and retrieve saved highlights from Readwise using vector and full-text queries. Enables AI assistants to access and analyze your reading content based on specific criteria like author, title, tags, notes, or text.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full_text_queries | Yes | ||
vector_search_term | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"full_text_queries": {
"items": {
"additionalProperties": false,
"properties": {
"field_name": {
"enum": [
"document_author",
"document_title",
"highlight_note",
"highlight_plaintext",
"highlight_tags"
],
"type": "string"
},
"search_term": {
"type": "string"
}
},
"required": [
"field_name",
"search_term"
],
"type": "object"
},
"type": "array"
},
"vector_search_term": {
"type": "string"
}
},
"required": [
"vector_search_term",
"full_text_queries"
],
"type": "object"
}